ID:               33853
 Updated by:       [EMAIL PROTECTED]
 Reported By:      pasha dot zubkov at gmail dot com
-Status:           Open
+Status:           Closed
 Bug Type:         XSLT related
 Operating System: *
 PHP Version:      5.0.4
 Assigned To:      helly
 New Comment:

This bug has been fixed in CVS.

Snapshots of the sources are packaged every three hours; this change
will be in the next snapshot. You can grab the snapshot at
http://snaps.php.net/.
 
Thank you for the report, and for helping us make PHP better.




Previous Comments:
------------------------------------------------------------------------

[2005-07-25 20:45:46] [EMAIL PROTECTED]

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;
?>

------------------------------------------------------------------------

[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

Reply via email to