ILIAS  release_8 Revision v8.25
php4DOMXPath Class Reference
+ Collaboration diagram for php4DOMXPath:

Public Member Functions

 xpath_eval ($eval_str)
 
 __construct ($dom_document)
 
 query (string $eval_str)
 
 xpath_register_ns ($prefix, $namespaceURI)
 

Data Fields

DOMXPath $myDOMXPath
 

Detailed Description

Definition at line 574 of file inc.xml5compliance.php.

Constructor & Destructor Documentation

◆ __construct()

php4DOMXPath::__construct (   $dom_document)

Definition at line 584 of file inc.xml5compliance.php.

585 {
586 $this->myDOMXPath = new DOMXPath($dom_document->myDOMDocument);
587 }

Member Function Documentation

◆ query()

php4DOMXPath::query ( string  $eval_str)

Definition at line 589 of file inc.xml5compliance.php.

590 {
591 return new php4DOMNodelist($this->myDOMXPath->query($eval_str));
592 }

Referenced by xpath_eval().

+ Here is the caller graph for this function:

◆ xpath_eval()

php4DOMXPath::xpath_eval (   $eval_str)

Definition at line 579 of file inc.xml5compliance.php.

580 {
581 return xpath_eval($this, $eval_str);
582 }
xpath_eval($eval_str)

References xpath_eval().

Referenced by xpath_eval().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ xpath_register_ns()

php4DOMXPath::xpath_register_ns (   $prefix,
  $namespaceURI 
)

Definition at line 594 of file inc.xml5compliance.php.

595 {
596 return $this->myDOMXPath->registerNamespace($prefix, $namespaceURI);
597 }

Field Documentation

◆ $myDOMXPath

DOMXPath php4DOMXPath::$myDOMXPath

Definition at line 576 of file inc.xml5compliance.php.


The documentation for this class was generated from the following file: