ID:               25803
 User updated by:  j dot spit at uptime dot nl
 Reported By:      j dot spit at uptime dot nl
 Status:           Assigned
 Bug Type:         XML related
 Operating System: Irrelevant
 PHP Version:      5CVS-2003-10-10
 Assigned To:      moriyoshi
 New Comment:

Have the same problem on Linux as well now, when using PHP5.0.0b2.

Any update yet ?


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

[2003-10-09 09:11:55] j dot spit at uptime dot nl

Description:
------------
xml_get_current_byte_index always returns 0 on windows xp, it works
fine on Linux systems. Using PHP5 beta 1 on both platforms.

Reproduce code:
---------------
<?php

function startElement($parser,$name,$attribs) {
  echo "Start : ".xml_get_current_byte_index( $parser )."<br>";
}

function endElement($parser,$name) {
  echo "End : ".xml_get_current_byte_index( $parser )."<br>";
}

$parser = xml_parser_create();
xml_set_element_handler($parser,'startElement','endElement');
xml_parser_set_option($parser,XML_OPTION_CASE_FOLDING,0);
xml_parse($parser,
          "<a b=\"x\">test<c>blaat</c></a>");
xml_parser_free($parser);
?>


Expected result:
----------------
Start : 0
Start : 13
End : 21
End : 25

This is the output on a Linux system.

Actual result:
--------------
Start : 0
Start : 0
End : 0
End : 0

This is the output on a Windows XP system.


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


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

Reply via email to