|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2011-03-02 15:23 UTC] dmitrij at stepanov dot lv
Description: ------------ DOMNode::getLineNo() doesn't return line number higher than 65535. I assume that unsigned short is used for file line enumeration either in XMLReader or DOMNode internals. Test script: --------------- Try reading with XMLReader an XML file that has more than 65535 lines. Then, when line nr. > 65535 is reached, call XMLReader::expand()->getLineNo(). Expected result: ---------------- Correct line number. Actual result: -------------- 65535 for lines, higher than 65525. PatchesPull Requests
Pull requests:
HistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sat Nov 01 09:00:01 2025 UTC |
The function DOMNode::getLineNo() is not able to return a line number higher than 65535. Test Script: <?php $xml = "<?xml version=\"1.0\"?><root>".str_repeat("\n", 65537) ."<mix>end</mix>\n<mix>end</mix></root>" ; echo dom_import_simplexml( end(simplexml_load_string($xml)->xpath('//text()')) )->getLineNo() ; ?> Expected result: 65537 Actual result: 65535 Summary: Reported back in 2007, upstream does not know how to fix this w/o breaking stuff (binary compatibility). It's also worth to mention that normally files with more than 65k lines aren't written by hand so don't require that type of functionality. Naturally this is subjective. To fix this this requires a different upstream/patch of one of the underlying libraries, e.g. libxml2. The debian ticket has a patch. https://mail.gnome.org/archives/xml/2007-October/msg00002.html http://lxr.php.net/xref/PHP_5_3/ext/dom/node.c#1955 http://lxr.php.net/xref/PHP_5_3/ext/libxml/php_libxml2.def#419 http://xmlsoft.org/html/libxml-tree.html#xmlGetLineNo https://bugzilla.gnome.org/show_bug.cgi?id=676026 http://stackoverflow.com/a/11099693/367456 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=445961