Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. class CrawlerUtil
  5. {
  6. public static function html(\Symfony\Component\DomCrawler\Crawler $crawler)
  7. {
  8. if (!count($crawler)) {
  9. return null;
  10. }
  11. return $crawler->html();
  12. }
  13. }
  14.  
  15.  
  16. // $a = $safeCrawler->html();
  17. // $b = CrawlerUtil::html($crawler);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement