加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 编程开发 > PHP > 正文

php 通过cURL函数抓取网页、下载网页的简单示例

发布时间:2020-05-25 04:47:07 所属栏目:PHP 来源:互联网
导读:php 通过cURL函数抓取网页、下载网页的简单示例

php通过cURL函数抓取和下载网页,感兴趣的小伙伴,下面一起跟随脚本之家 jb51.cc的小编来看看吧。
经测试代码如下:


/**
 * 通过cURL函数抓取和下载网页
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 **/
function curl_download($Url){
 
    // is cURL installed yet?
    if (!function_exists('curl_init')){
        die('Sorry cURL is not installed!');
    }
 
    // OK cool - then let's create a new cURL resource handle
    $ch = curl_init();
 
    // Now set some options (most are optional)
 
    // Set URL to download
    curl_setopt($ch,CURLOPT_URL,$Url);
 
    // Set a referer
    curl_setopt($ch,CURLOPT_REFERER,"http://www.example.org/yay.htm");
 
    // User agent
    curl_setopt($ch,CURLOPT_USERAGENT,"MozillaXYZ/1.0");
 
    // Include header in result? (0 = yes,1 = no)
    curl_setopt($ch,CURLOPT_HEADER,0);
 
    // Should cURL return or print out the data? (true = return,false = print)
    curl_setopt($ch,CURLOPT_RETURNTRANSFER,true);
 
    // Timeout in seconds
    curl_setopt($ch,CURLOPT_TIMEOUT,10);
 
    // Download the given URL,and return output
    $output = curl_exec($ch);
 
    // Close the cURL resource,and free system resources
    curl_close($ch);
 
    return $output;
}

//使用范例:
print curl_download('http://www.example.org/');


/***   来自脚本之家 jb51.cc(jb51.cc)   ***/

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读