91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

莱芜市| 福海县| 错那县| 黄龙县| 方城县| 甘洛县| 延安市| 巴塘县| 宾阳县| 方正县| 榆社县| 丰宁| 万年县| 鸡泽县| 海口市| 隆子县| 文安县| 遂川县| 广汉市| 金川县| 拉萨市| 贡觉县| 盐源县| 秭归县| 临高县| 青铜峡市| 桃园市| 新和县| 宜良县| 泰安市| 尚志市| 贵德县| 从江县| 大连市| 永善县| 清流县| 外汇| 利川市| 静海县| 玉山县| 武隆县|