首页  >  文章  >  php教程  >  PHP读取网页文件

PHP读取网页文件

WBOY
WBOY原创
2016-06-13 10:42:281231浏览

$handle = fopen ("http://www.example.com/", "rb");

$contents = "";

while (!feof($handle)) { 

$contents .= fread($handle, 8192);

}

fclose($handle);

?>

$handle = fopen("http://www.example.com/", "rb");

$contents = stream_get_contents($handle);

fclose($handle);

?>

直接上代码了,学技术的,你会懂得

 

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn