Example #1
0
 static function evaluate($xpath)
 {
     if (!self::$xml) {
         self::$xml = new DOMDocument();
         self::$xpath = new DOMXPath(self::$xml);
     }
     return self::$xpath->evaluate($xpath);
 }