Re: Version 3.0 now available!
Brought to you by:
bs_php,
nigelswinson
From: Philipp L. <le...@hi...> - 2002-05-08 03:05:04
|
From: "Nigel Swinson" <nig...@us...> >.. > Anyway version 3.0 is here, and it is 50% faster at reading, 40% faster at > writing (at least it is on my home system), and the internal structure has > been mashed about to make it much more maintainable, sensible and faster. >.. This is great news. I will replace it on the systems I use it at (namely at http://questml.com and http://outer-court.com/tech/forum.htm ) and of course do some Beta testing. BTW is it normal that e.g. "myElement | myOtherElement" (or maybe ".//myElement | .//myOtherElement") will return the elements not in the order they appear in the XML, but in the order as listed in the XPath-string? I wish they could be listed as appearing in the XML, as this is the result I get from MSXML. Is it not standardized, and up to the XPath-parser to decide the returned order, or simply a PHPXPath bug? I'd really need the above-mentioned in my QML interpreter, and now have to resort to xpath = "./*" .... switch ($elementNodeName...) { case "myElement": ... case "myOtherElement": ... } which then works in the order I expected. (But has little advantage to XML-DOM childNodes...) |