欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php使用file_get_contents函数抓取页面信息

程序员文章站 2022-05-13 08:14:46
...
php代码
$url="http://qita.in";
$contents=@file_get_contents($url);
//preg_match_all("/(.*?)/is",$contents,$content);
preg_match_all("/(.*?)/is",$contents,$content);
print_r($content[0]);