ID: 26443
Updated by: [EMAIL PROTECTED]
Reported By: thomas dot sattler at decon-network dot de
-Status: Open
+Status: Feedback
Bug Type: Apache related
Operating System: Windows XP
PHP Version: 4.3.3
New Comment:
Check your error_reporting level. Or do error_reporting(E_ALL); at the
start of the script.
Previous Comments:
------------------------------------------------------------------------
[2003-11-28 03:19:26] thomas dot sattler at decon-network dot de
Description:
------------
When I use Apache 1.3.29 with php4apache.dll there is no error
reporting.
With the php.exe the errors are reported.
This occurs also with php-4.3.4 and php.4.3.5.5 but not with the
php.exe.
Reproduce code:
---------------
<?php
ini_set("display_errors", "1");
$xmlstr='<?xml version="1.0" encoding="UTF-8"?>
<udk-result:udk
xmlns:udk-result="http://www.umweltdatenkatalog.de/udk/query-answer">
<udk-result:data-source server-id="BW">
</udk-result:data-source>
</udk-result:udka>'; ?><?php
if(!$doc = domxml_open_mem($xmlstr)) print "ERROR!";
else {print_r ($doc);
$root=$doc->document_element();}
$xmltest = domxml_new_doc("1.0");
$xmlroot = $xmltest->create_element("testtag");
$xmlroot = $xmltest->append_child($xmlroot);
$xmlroot->set_content("content � rest content");
$test_text = $xmltest->dump_mem(0, 'iso-8859-1');
print "<pre> $test_text </pre>";
?>
Expected result:
----------------
Warnings on line 8 domxml_open_mem() (xml-string is not well formed)
and on line 15 "dump_mem(): output conversion failed due to conv error"
(the euro symbol is not iso-8859-1)
Actual result:
--------------
The output is only:
ERROR!<pre> <?xml version="1.0" encoding="iso-8859-1"?>
<testtag>content </pre>
------------------------------------------------------------------------
--
Edit this bug report at http://bugs.php.net/?id=26443&edit=1