亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php執行抓取網頁的幾種方式

發布時間:2020-08-17 14:09:11 來源:網絡 閱讀:676 作者:Lee_吉 欄目:web開發

一、遠程php代碼:

<?php
    header('access-allow-origin:*');
    sleep(1);
    echo "hello\n";
    echo "world";

二、具體實現:

  1. file函數:
    a. 代碼:
    <?php
    $url = 'http://localhost/test.php';
    $output = file($url);
    var_dump($output);

    b. 輸出:

    array(2) {
    [0]=>
    string(6) "hello"
    [1]=>
    string(5) "world"
    }
  2. file_get_contents函數:
    a. 代碼:
    <?php
    $url = 'http://localhost/test.php';
    $output = file_get_contents($url);
    var_dump($output);

    b. 輸出:

    string(11) "hello world"
  3. fopen函數:
    a. 代碼:
    <?php
    $url = 'http://localhost/test.php'; 
    $handle = fopen($url,"rb");
    do{     
            $data = fread($handle,1024);     
            if(strlen($data)==0) {
                    break;   
            }     
            $output = $data;
    }  
    while(true);
    fclose($handle);
    var_dump( $output);

    b. 輸出:

    string(11) "hello world"
  4. curl函數:
    a. 代碼:
    <?php
    $url = 'http://localhost/test.php'; 
    $ch = curl_init();
    $timeout = 1;
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
    $output = curl_exec($ch);
    curl_close($ch);
    var_dump($output);

    b. 輸出:

    string(11) "hello world"
  5. fsockopen函數:
    a. 代碼:
    <?php
    $url = 'localhost/test.php'; 
    $fp = fsockopen($url, 80, $errno, $errstr, 30);
    if (!$fp) {
            echo "$errstr ($errno)<br />\n";
    } else {
        stream_set_blocking($fp,0);
            $out = "GET / HTTP/1.1\r\n";
            $out .= "Host: {$url}\r\n";
            $out .= "Connection: Close\r\n\r\n";
            fwrite($fp, $out);
            while (!feof($fp)) {
                    var_dump(fgets($fp, 128));
            }
            fclose($fp);
    }

    b. 輸出:

    string(11) "hello world"
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

彰化县| 图们市| 营口市| 遂溪县| 邛崃市| 莎车县| 南昌县| 北辰区| 宜君县| 芜湖县| 喜德县| 庆安县| 宜昌市| 无极县| 杭锦后旗| 丹江口市| 固原市| 屏边| 贵德县| 张家口市| 晋中市| 彰武县| 焉耆| 太保市| 图片| 独山县| 抚州市| 图们市| 乐都县| 德州市| 黄龙县| 孝昌县| 奎屯市| 南阳市| 蒙自县| 鄱阳县| 阆中市| 西乌珠穆沁旗| 巴青县| 海林市| 垦利县|