php file_get_contents抓取页面信息的代码

发布时间:2020-10-17编辑:脚本学堂
php使用file_get_contents函数抓取页面信息的代码,很简单的,供大家学习参考。

php file_get_contents函数抓取页面信息,详见文中的例子。

复制代码 代码示例:

<?php
/**
  @抓取页面信息
  @file_get_contents函数应用
  @site www.jb200.com
*/
$url="http://www.jb200.com/article/518.html";
$contents=@file_get_contents($url);
preg_match_all("/<h1>(.*?)</h1>/is",$contents,$content);
//测试,打印结果
print_r($content[0]);
?>