Alias for XPath10Parser for backward compatibility.
Deprecated
Use XPath10Parser, XPath20Parser, or createXPathParser() instead.
This alias defaults to XPath 1.0 behavior.
Example
// Old usage (deprecated): constparser = newXPathParser();
// New recommended usage: constparser = newXPath10Parser(); // or for XPath 2.0: constparser = newXPath20Parser(); // or using the factory: constparser = createXPathParser('1.0');
Alias for XPath10Parser for backward compatibility.