test_document.php 521 B

1234567891011121314151617181920
  1. <?php
  2. //error_reporting(E_ALL);
  3. require_once('../phpQuery/phpQuery.php');
  4. phpQuery::$debug = true;
  5. $testName = 'HTML document load';
  6. $doc = phpQuery::newDocumentFile('test.html');
  7. print $doc->find('li:first')->html('foo <p>bar</p> foo <b><i>foo</i</b>')->html();
  8. die();
  9. $testResult = 10;
  10. if ($doc->script('example', 'p')->length == $testResult)
  11. print "Test '$testName' PASSED :)";
  12. else {
  13. print "Test '$testName' <strong>FAILED</strong> !!! ";
  14. print "<pre>";
  15. var_dump($doc->whois());
  16. print "</pre>\n";
  17. }
  18. print "\n";