ID:               25666
 Updated by:       [EMAIL PROTECTED]
 Reported By:      skissane at ics dot mq dot edu dot au
-Status:           Open
+Status:           Closed
 Bug Type:         XML related
 Operating System: Linux
 PHP Version:      5CVS-2003-09-25 (dev)
 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-09-26 07:48:11] skissane at ics dot mq dot edu dot au

My configure line was:
./configure --disable-cgi

That's all.

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

[2003-09-26 03:54:27] [EMAIL PROTECTED]

What was the configure line you used to configure PHP?


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

[2003-09-25 23:29:36] skissane at ics dot mq dot edu dot au

Description:
------------
Namespace support by the xml_* functions is broken in PHP5 latest
snapshot (works fine in PHP4).

Reproduce code:
---------------
<?php
function startElement($parser,$name,$attribs) {
    echo $name . "\n";
}

function endElement($parser,$name) {
}

$parser = xml_parser_create_ns("UTF-8","@");
xml_set_element_handler($parser,'startElement','endElement');
xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
xml_parse($parser,
          "<foo:a xmlns:foo=\"http://example.com/foo\";
xmlns:bar=\"http://example.com/bar\";><bar:b /></foo>\n");
xml_parser_free($parser);
?>


Expected result:
----------------
PHP 4.3.3 gives output:

http://example.com/[EMAIL PROTECTED]
http://example.com/[EMAIL PROTECTED]


Actual result:
--------------
http://example.com/foo:a
bar:b



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


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

Reply via email to