test_php.php 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
  2. <?php
  3. require_once('../phpQuery/phpQuery.php');
  4. phpQuery::$debug = true;
  5. $testName = 'PHP Code output';
  6. $expected = <<<EOF
  7. <?php print \$r ?><a href="<?php print \$array['key']; if ("abc'd'") {}; ?>"></a>
  8. EOF;
  9. $result = phpQuery::newDocumentPHP(null, 'text/html;charset=utf-8')
  10. ->appendPHP('print $r')
  11. ->append('<a/>')
  12. ->find('a')
  13. ->attrPHP('href', 'print $array[\'key\']; if ("abc\'d\'") {};')
  14. ->end();
  15. if (trim($result->php()) == $expected)
  16. print "Test '{$testName}' passed :)";
  17. else
  18. print "Test '{$testName}' <strong>FAILED</strong> !!!";
  19. print "\n";
  20. $testName = 'PHP file open';
  21. $result = phpQuery::newDocumentFilePHP('document-types/document-utf8.php');
  22. var_dump($result->php());
  23. /*
  24. ->appendPHP('print $r')
  25. ->append('<a/>')
  26. ->find('a')
  27. ->attrPHP('href', 'print $array[\'key\']; if ("abc\'d\'") {};')
  28. ->end();
  29. if (trim($result->php()) == $expected)
  30. print "Test '{$testName}' passed :)";
  31. else
  32. print "Test '{$testName}' <strong>FAILED</strong> !!!";
  33. print "\n";
  34. */