如何修复file_get_html上的超时?

时间:2018-12-30 06:35:21

标签: php simple-html-dom

我正在尝试在网页上使用file_get_html在页面上查找图像(及其URL)。

<?php
include('simplehtmldom_1_7/simple_html_dom.php');
 $html = file_get_html('https://www.mrporter.com/en-us/mens/givenchy/jaw-neoprene--suede--leather-and-mesh-sneakers/1093998');
foreach($html->find('img') as $e)
        $img_url_array[] = $e->src . '<br>';
      $array_size = sizeof($img_url_array);
       $x =0;
        while($x <$array_size){
       echo "image url is " . $img_url_array[$x] ;
       $x =$x+1;
   }
?>

脚本会继续加载并且不会暂停。有没有办法设置超时或异常?

0 个答案:

没有答案