Go to the source code of this file.
Data Structures | |
class | php4DOMAttr |
class | php4DOMCDATASection |
class | php4DOMDocument |
class | php4DOMElement |
php4DomElement More... | |
class | php4DOMNode |
php4DOMNode More... | |
class | php4DOMNodelist |
class | php4DOMXPath |
Functions | |
domxml_open_file ($filename) | |
domxml_open_mem ($str) | |
xpath_eval ($xpath_context, $eval_str) | |
xpath_new_context ($dom_document) |
domxml_open_file | ( | $ | filename | ) |
Definition at line 24 of file inc.xml5compliance.php.
{ return new php4DOMDocument($filename); }
domxml_open_mem | ( | $ | str | ) |
Definition at line 32 of file inc.xml5compliance.php.
{ return new php4DOMDocument($str, false); }
xpath_eval | ( | $ | xpath_context, | |
$ | eval_str | |||
) |
Definition at line 37 of file inc.xml5compliance.php.
{
return $xpath_context->query($eval_str);
}
xpath_new_context | ( | $ | dom_document | ) |
Definition at line 42 of file inc.xml5compliance.php.
{ return new php4DOMXPath($dom_document); }