|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2002-11-29 07:36 UTC] chregu@php.net
[2002-12-15 04:04 UTC] sniper@php.net
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Tue Dec 02 04:00:01 2025 UTC |
Hi, I'm using xslt_process like that : $xslbot=xslt_create(); if (xslt_process($xslbot,"input.xml","input.xsl","ouput.xml")) { echo "Ca marche"; } else { echo "Une erreur est survenue durant le traitement XSL...\n"; echo "\tErreur num?ro : " . xslt_errno($xslbot) . "\n"; echo "\tMessage d'erreur : " . xslt_error($xslbot) . "\n"; exit(); } xslt_free ( $xslbot) ; the 2 files xml xsl work well when you open them in IE. But the output file contains the xsl file content and non the both result. I try to introduce an error in the 2 input files, the errors are detected.