Heim > Backend-Entwicklung > PHP-Tutorial > php采集 curl

php采集 curl

WBOY
Freigeben: 2016-06-06 20:26:30
Original
1199 Leute haben es durchsucht

使用curl采集,$url = 'http://kakaku.com/pc/';请问怎么修改下面的代码?

<code class="php"> function GetContent($url = "", $post_data = '', $method = 'POST', $timeout = 500) {
        if (is_array($post_data)) {
            $post_data = http_build_query($post_data);
        }
        if ($method == 'GET') {
            $url = $url . '?' . ltrim($post_data, '?');
        }
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array('User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) \r\n Accept: */*'));
        curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        if ($method == 'POST') {
            curl_setopt($ch, CURLOPT_POST, 1);
            curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
        }
        $content = curl_exec($ch);
        $response = curl_getinfo($ch);
        return $content;
    }</code>
Nach dem Login kopieren
Nach dem Login kopieren

回复内容:

使用curl采集,$url = 'http://kakaku.com/pc/';请问怎么修改下面的代码?

<code class="php"> function GetContent($url = "", $post_data = '', $method = 'POST', $timeout = 500) {
        if (is_array($post_data)) {
            $post_data = http_build_query($post_data);
        }
        if ($method == 'GET') {
            $url = $url . '?' . ltrim($post_data, '?');
        }
        $ch = curl_init();
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_HTTPHEADER, array('User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-US) \r\n Accept: */*'));
        curl_setopt($ch, CURLOPT_TIMEOUT, $timeout);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        if ($method == 'POST') {
            curl_setopt($ch, CURLOPT_POST, 1);
            curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
        }
        $content = curl_exec($ch);
        $response = curl_getinfo($ch);
        return $content;
    }</code>
Nach dem Login kopieren
Nach dem Login kopieren

指定 第三个参数 的值为 GET 就可以了.

php采集 curl

你是要采集get还是post请求的内容?

若是采集首页直接
echo file_get_contents('http://kakaku.com/pc/'); 即可

Verwandte Etiketten:
php
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage