|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2003-06-28 10:30 UTC] rrichards@php.net
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Thu Nov 06 22:00:01 2025 UTC |
Description: ------------ There is a problem, with <xsl:sort select="TITLE" data-type="text" lang="pl"/>. The nodes with Polish special character aren`t sorting correctly. They are placed at the end of list. It seems, that fucntion DomXsltStylesheet->process doesn`t work good. Reproduce code: --------------- a piece of xsl file: filmy.xsl ... <xsl:apply-templates> <xsl:sort select="TITLE" data-type="text" lang="pl"/> </xsl:apply-templates> ... fragment of php script ... $filename = "filmy.xsl"; $xmldoc = domxml_open_file("filmy.xml"); $xsldoc = domxml_xslt_stylesheet_file($filename); $result = $xsldoc->process($xmldoc); ...