|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2003-11-25 03:23 UTC] info at sovall dot cz
Description: ------------ When I try <?php $xh = xslt_create(); ?> then PHP write: PHP Fatal error: Call to undefined function xslt_create() My php.ini: extension=php_iconv.dll extension=php_xslt.dll All php/dlls/ are in winnt/system32/ directory. php version: 5.0.0b3-dev (php5-win32-200311201130.zip) php_xslt.dll: 6/22/2003 With php5.0.0b1 working fine. Thanx for reply. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 23:00:01 2025 UTC |
I am sorry. This example working fine. My problem may be in new Zend 2 Object model. My code: class xslTransform{ public $xh; .... function xslTransform(){ $this->xh = xslt_create(); .... } } This code return error above.