首页 > Web开发 > 详细

PHP 抓取html页面内容 函数

时间:2014-11-12 19:32:45      阅读:342      评论:0      收藏:0      [点我收藏+]

function getHtml($url,$id=0){
  $file_path = ATTACHEMENT_PATH.‘caiji/‘;
  if ($id) {
    $file_path.=($id%10).‘/‘;
  }
  if (!is_dir($file_path)) {
    mkdir($file_path,0777,true);
  }
  $fname = md5(trim($url));
  $file = $file_path.$fname.‘.txt‘;
  $string = file_get_contents($file);
  if (!$string) {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url );
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_TIMEOUT, 50);
    $string = curl_exec($ch);
    file_put_contents($file, $string);
  }
  return $string ;
}

PHP 抓取html页面内容 函数

原文:http://www.cnblogs.com/yalibuxiao/p/4093197.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!