xpath.php 578 B

12345678910111213141516171819202122232425
  1. <?php
  2. // here you can directly run xpath queries to debug your tests
  3. $Query = "//*[local-name()='p']";
  4. $DOM = new DOMDocument();
  5. $DOM->loadHTMLFile('test.html');
  6. $X = new DOMXPath($DOM);
  7. print $Query;
  8. whois($X->query($Query));
  9. function whois($nodeList) {
  10. $return = array();
  11. foreach( $nodeList as $node ) {
  12. $return[] = (
  13. $node->tagName
  14. .($node->getAttribute('id')
  15. ? '#'.$node->getAttribute('id'):'')
  16. .($node->getAttribute('class')
  17. ? '.'.join('.', split(' ', $node->getAttribute('class'))):'')
  18. );
  19. }
  20. print "<pre>";
  21. print_r($return);
  22. print "</pre>";
  23. }
  24. ?>