test_arrayaccess.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <?php
  2. //error_reporting(E_ALL);
  3. set_include_path(
  4. get_include_path()
  5. .':/home/bob/Sources/PHP/zend-framework/'
  6. );
  7. require_once('../phpQuery/phpQuery.php');
  8. phpQuery::$debug = true;
  9. $testHtml = phpQuery::newDocumentFile('test.html');
  10. $testHtml['li:first']->append('<span class="just-added">test</span>');
  11. $testName = 'Array Access get';
  12. if (trim($testHtml['.just-added']->html()) == 'test')
  13. print "Test '$testName' PASSED :)";
  14. else {
  15. print "Test '$testName' <strong>FAILED</strong> !!! ";
  16. print "<pre>";
  17. print_r($testHtml['.just-added']->whois());
  18. print "</pre>\n";
  19. }
  20. print "\n";
  21. require_once('../phpQuery/phpQuery.php');
  22. phpQuery::$debug = true;
  23. $testHtml = phpQuery::newDocumentFile('test.html');
  24. $testHtml['li:first'] = 'new inner html';
  25. $testName = 'Array Access set';
  26. if (trim($testHtml['li:first']->html()) == 'new inner html')
  27. print "Test '$testName' PASSED :)";
  28. else {
  29. print "Test '$testName' <strong>FAILED</strong> !!! ";
  30. print "<pre>";
  31. print_r($testHtml['.just-added']->whois());
  32. print "</pre>\n";
  33. }
  34. print "\n";