Exemple #1
0
 /**
  * Enter description here...
  *
  * @param unknown_type $html
  * @param unknown_type $domId
  * @return unknown New DOM ID
  * @todo support PHP tags in input
  * @todo support passing \DOMDocument object from self::loadDocument
  */
 protected static function createDocumentWrapper($html, $contentType = null, $documentID = null)
 {
     if (function_exists('domxml_open_mem')) {
         throw new \Exception("Old PHP4 DOM XML extension detected. phpQuery won't work until this extension is enabled.");
     }
     //		$id = $documentID
     //			? $documentID
     //			: md5(microtime());
     $document = null;
     if ($html instanceof \DOMDocument) {
         if (self::getDocumentID($html)) {
             // document already exists in phpQuery::$documents, make a copy
             $document = clone $html;
         } else {
             // new document, add it to phpQuery::$documents
             $wrapper = new DOMDocumentWrapper($html, $contentType, $documentID);
         }
     } else {
         $wrapper = new DOMDocumentWrapper($html, $contentType, $documentID);
     }
     //		$wrapper->id = $id;
     // bind document
     phpQuery::$documents[$wrapper->id] = $wrapper;
     // remember last loaded document
     phpQuery::selectDocument($wrapper->id);
     return $wrapper->id;
 }