ID: 33853
Updated by: [EMAIL PROTECTED]
Reported By: pasha dot zubkov at gmail dot com
Status: Feedback
-Bug Type: Scripting Engine problem
+Bug Type: XSLT related
Operating System: Linux 2.6.12.2
PHP Version: 5.0.4
New Comment:
It seems to be related to XSLT indeed, as I can't reproduce it with
5.0.4/5.1-dev with this code:
<?php
function __autoload($className) {
var_dump($className);
exit();
}
$test = new MyClass;
?>
Previous Comments:
------------------------------------------------------------------------
[2005-07-25 20:34:14] [EMAIL PROTECTED]
Please try using this CVS snapshot:
http://snaps.php.net/php5-latest.tar.gz
For Windows:
http://snaps.php.net/win32/php5-win32-latest.zip
------------------------------------------------------------------------
[2005-07-25 20:27:23] pasha dot zubkov at gmail dot com
Description:
------------
See example
Reproduce code:
---------------
<?php
function __autoload($className) {
var_dump($className);
exit();
}
$xsl = new DomDocument();
$xsl->loadXML('<?xml version="1.0" encoding="iso-8859-1" ?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:php="http://php.net/xsl">
<xsl:template match="/">
<xsl:value-of select="php:function(\'TeSt::dateLang\')" />
</xsl:template>
</xsl:stylesheet>');
$inputdom = new DomDocument();
$inputdom->loadXML('<?xml version="1.0" encoding="iso-8859-1" ?>
<today></today>');
$proc = new XsltProcessor();
$proc->registerPhpFunctions();
$xsl = $proc->importStylesheet($xsl);
$newdom = $proc->transformToDoc($inputdom);
?>
Expected result:
----------------
string(4) "TeSt"
Actual result:
--------------
string(4) "test"
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=33853&edit=1