demo.php 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <?php
  2. require('phpQuery/phpQuery.php');
  3. // INITIALIZE IT
  4. // phpQuery::newDocumentHTML($markup);
  5. // phpQuery::newDocumentXML();
  6. // phpQuery::newDocumentFileXHTML('test.html');
  7. // phpQuery::newDocumentFilePHP('test.php');
  8. // phpQuery::newDocument('test.xml', 'application/rss+xml');
  9. // this one defaults to text/html in utf8
  10. $doc = phpQuery::newDocument('<div/>');
  11. // FILL IT
  12. // array syntax works like ->find() here
  13. $doc['div']->append('<ul></ul>');
  14. // array set changes inner html
  15. $doc['div ul'] = '<li>1</li> <li>2</li> <li>3</li>';
  16. // MANIPULATE IT
  17. $li = null;
  18. // almost everything can be a chain
  19. $doc['ul > li']
  20. ->addClass('my-new-class')
  21. ->filter(':last')
  22. ->addClass('last-li')
  23. // save it anywhere in the chain
  24. ->toReference($li);
  25. // SELECT DOCUMENT
  26. // pq(); is using selected document as default
  27. phpQuery::selectDocument($doc);
  28. // documents are selected when created or by above method
  29. // query all unordered lists in last selected document
  30. $ul = pq('ul')->insertAfter('div');
  31. // ITERATE IT
  32. // all direct LIs from $ul
  33. foreach($ul['> li'] as $li) {
  34. // iteration returns PLAIN dom nodes, NOT phpQuery objects
  35. $tagName = $li->tagName;
  36. $childNodes = $li->childNodes;
  37. // so you NEED to wrap it within phpQuery, using pq();
  38. pq($li)->addClass('my-second-new-class');
  39. }
  40. // PRINT OUTPUT
  41. // 1st way
  42. print phpQuery::getDocument($doc->getDocumentID());
  43. // 2nd way
  44. print phpQuery::getDocument(pq('div')->getDocumentID());
  45. // 3rd way
  46. print pq('div')->getDocument();
  47. // 4th way
  48. print $doc->htmlOuter();
  49. // 5th way
  50. print $doc;
  51. // another...
  52. print $doc['ul'];