Advertisement
Guest User

Untitled

a guest
Dec 20th, 2014
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2.  
  3. $test = <<<END
  4. <!DOCTYPE html>
  5. <html>
  6. <head>
  7. <meta charset="utf-8">
  8. <title>Test case</title>
  9. </head>
  10. <body>
  11. <img alt="foo" src="foo.jpg">
  12. <img alt="bar"src="bar.jpg">
  13. </body>
  14. </html>
  15. END;
  16.  
  17. require 'simplehtmldom_1_5/simple_html_dom.php';
  18. $html = new simple_html_dom();
  19. $html->load($test);
  20. echo '<pre>';
  21. foreach ($html->find('img') as $img) {
  22. $tag = htmlentities($img->outertext);
  23. echo "$tag\n";
  24. }
  25.  
  26. /*
  27.  
  28. Output:
  29. <img alt="foo" src="foo.jpg">
  30. <img alt="bar">
  31.  
  32. */
  33.  
  34. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement