码迷,mamicode.com
首页 > Web开发 > 详细

PHP 抓取html页面内容 函数

时间:2014-11-12 19:34:15      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   sp   on   cti   html   size   htm   

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页面内容 函数

标签:style   io   color   sp   on   cti   html   size   htm   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!