|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2001-12-14 11:59 UTC] sterling@php.net
[2002-03-28 15:29 UTC] ax at condat dot de
[2002-05-02 00:19 UTC] tim at zero-interactive dot com
[2002-06-02 16:04 UTC] k.schroeder@php.net
[2002-06-27 09:41 UTC] ax at condat dot de
[2003-01-05 11:19 UTC] axel_kollmorgen at hotmail dot com
[2003-01-05 11:55 UTC] derick@php.net
[2003-06-20 21:50 UTC] jacob at pineberry dot com dot au
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Wed Nov 19 18:00:02 2025 UTC |
I got this error using XSLT in PHP-4.1.0 on Windows 2000. Warning: Sablotron error on line 1: unknown encoding '' in e:\www\htdocs\home.php on line 151 Warning: Unknown persistent list entry type in module shutdown (11) in Unknown on line 0 and when I add an encoding statement, Warning: xslt_set_encoding() is not supported in this PHP build in e:\www\htdocs\home.php on line 150 My code: $xml = $doc->dumpmem(); $arguments = array( '/_xml' => $xml, ); // Allocate a new XSLT processor $xh = xslt_create(); #xslt_set_encoding($xh, "utf-8"); // Process the document $result = xslt_process($xh, 'arg:/_xml', $include_dir . $xslt_filename, NULL, $arguments); var_dump($result); xslt_free($xh);