|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-10-03 10:03 UTC] diego80 at libero dot it
Hi with an xml files like this(pay attention to words with accent ?-?-?-?-?-?)
<?xml version="1.0"?>
<FOO>
<NAME>il mio nome ? mai pi?</NAME>
</FOO>
and with a xsl file like
<?xml version="1.0"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="FOO">
<xsl:value-of select="NAME">
</xsl:template>
using xslt_process(..) to trasform some error occur. While if we delete these accents (??????) it's all ok.
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Oct 27 13:00:01 2025 UTC |
Hi with an xml files like this(pay attention to words with accent ?-?-?-?-?-?) <?xml version="1.0"?> <FOO> <NAME>il mio nome ? mai pi?</NAME> </FOO> and with a xsl file like <?xml version="1.0"?> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:template match="FOO"> <xsl:value-of select="NAME"> </xsl:template> </xsl:stylesheet> using xslt_process(..) to trasform some error occur. While if we delete these accents (??????) it's all ok.