ID:               26443
 Updated by:       [EMAIL PROTECTED]
 Reported By:      thomas dot sattler at decon-network dot de
-Status:           Open
+Status:           Closed
 Bug Type:         DOM XML related
 Operating System: Windows XP
 PHP Version:      4CVS-2003-12-02
 New Comment:

This bug has been fixed in CVS.

In case this was a PHP problem, 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/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.




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

[2003-12-02 06:21:08] thomas dot sattler at decon-network dot de

Note: you have to use the EUR-symbol in the set_content() command.

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

[2003-12-02 02:14:14] thomas dot sattler at decon-network dot de

For domxml_open_mem error reporting is now available, but not for the
second part with domxml_dump_mem

<?php
ini_set("display_errors", 1);
error_reporting(E_ALL);
echo foobar;
$xmlstr='<?xml version="1.0" encoding="UTF-8"?><foo>';
$doc = domxml_open_mem($xmlstr);
var_dump($doc);

$xmltest = domxml_new_doc("1.0");
$xmlroot = $xmltest->create_element("testtag");
$xmlroot = $xmltest->append_child($xmlroot);
$xmlroot->set_content("content € rest content");
var_dump($xmltest);
$test_text = $xmltest->dump_mem(0, 'iso-8859-1');
print "<pre> $test_text </pre>";

?>

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

[2003-12-01 11:18:38] [EMAIL PROTECTED]

This bug has been fixed in CVS.

In case this was a PHP problem, 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/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.



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

[2003-12-01 02:15:35] [EMAIL PROTECTED]

Note: All errors NOT coming from domxml are displayed just fine. 


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

[2003-11-30 14:13:32] [EMAIL PROTECTED]

Tested within WinXP + Apache2..and there is no way to get the errors to
show up in the browser. (works fine with cli)
Here's short test script:

<?php
ini_set("display_errors", 1);
error_reporting(E_ALL);
echo foobar;
$xmlstr='<?xml version="1.0" encoding="UTF-8"?><foo>';
$doc = domxml_open_mem($xmlstr);
var_dump($doc);
?>

This will output something like this:

Notice: Use of undefined constant foobar - assumed 'foobar' in
C:\apache\Apache-2.0.47\htdocs\bug26443.php on line 6
foobarbool(false) 

Works fine in *nix, so I guess this is some ZTS problem.
The error messages appear in the apache error_log after
I shutdown apache..


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

The remainder of the comments for this report are too long. To view
the rest of the comments, please view the bug report online at
    http://bugs.php.net/26443

-- 
Edit this bug report at http://bugs.php.net/?id=26443&edit=1

Reply via email to