รับโค้ด HTTP ใน PHP โดยใช้ curl


177

ฉันใช้ CURL เพื่อรับสถานะของเว็บไซต์หากเป็นขึ้น / ลงหรือเปลี่ยนเส้นทางไปยังเว็บไซต์อื่น ฉันต้องการทำให้มันคล่องตัวที่สุดเท่าที่จะเป็นไปได้ แต่มันก็ใช้งานไม่ได้

<?php
$ch = curl_init($url);
curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch,CURLOPT_TIMEOUT,10);
$output = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

return $httpcode;
?>

ฉันมีสิ่งนี้ห่อในฟังก์ชั่น มันใช้งานได้ดี แต่ประสิทธิภาพไม่ดีที่สุดเพราะมันจะทำการดาวน์โหลดทั้งหน้าสิ่งที่ถ้าฉันลบ$output = curl_exec($ch);มันจะกลับมา0ตลอดเวลา

ไม่มีใครรู้วิธีทำให้ประสิทธิภาพดีขึ้นหรือไม่

คำตอบ:


260

ก่อนอื่นตรวจสอบให้แน่ใจว่า URL นั้นถูกต้องจริงหรือไม่ (สตริง, ไม่ว่างเปล่า, ไวยากรณ์ที่ดี) นี่เป็นการตรวจสอบฝั่งเซิร์ฟเวอร์อย่างรวดเร็ว ตัวอย่างเช่นการทำสิ่งนี้ก่อนอาจช่วยประหยัดเวลาได้มาก:

if(!$url || !is_string($url) || ! preg_match('/^http(s)?:\/\/[a-z0-9-]+(.[a-z0-9-]+)*(:[0-9]+)?(\/.*)?$/i', $url)){
    return false;
}

ตรวจสอบให้แน่ใจว่าคุณดึงข้อมูลส่วนหัวเท่านั้นไม่ใช่เนื้อหาของเนื้อหา:

@curl_setopt($ch, CURLOPT_HEADER  , true);  // we want headers
@curl_setopt($ch, CURLOPT_NOBODY  , true);  // we don't need body

สำหรับรายละเอียดเพิ่มเติมเกี่ยวกับการรับรหัสสถานะ http URL ฉันอ้างถึงโพสต์อื่นที่ฉันทำ (นอกจากนี้ยังช่วยในการเปลี่ยนเส้นทางต่อไปนี้):


โดยรวม:

$url = 'http://www.example.com';
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_HEADER, true);    // we want headers
curl_setopt($ch, CURLOPT_NOBODY, true);    // we don't need body
curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
curl_setopt($ch, CURLOPT_TIMEOUT,10);
$output = curl_exec($ch);
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
curl_close($ch);

echo 'HTTP code: ' . $httpcode;

4
ฉันแก้ไขโพสต์ของคุณและวางรหัสตัวอย่างการทำงานโดยรวม ฉันคิดว่ามันเป็นประโยชน์มากกว่านี้ Btw., +1 สำหรับพูดถึงการตั้งค่า CURLOPT_HEADER และ CURLOPT_NOBODY! :)
Sk8erPeter

25
ไม่จำเป็นต้องตั้งค่า CURLOPT_HEADER เป็นจริง คุณยังได้รับ httpcode จาก curl_getinfo () ไม่ว่าจะด้วยวิธีใด
Brainware

7
ตั้งแต่ PHP 5.5.0 และ cURL 7.10.8 [CURLINFO_HTTP_CODE] นี้เป็นชื่อแทนดั้งเดิมของ CURLINFO_RESPONSE_CODE ( อ้างอิง )
sshow

ด้วยเหตุผลบางประการสายcurl_setopt($ch, CURLOPT_NOBODY, true);นี้แขวนอยู่ ไม่แน่ใจว่าสิ่งนี้เกี่ยวข้องกับเวอร์ชัน PHP ของเซิร์ฟเวอร์หรือไม่
itoctopus

126
// must set $url first....
$http = curl_init($url);
// do your curl thing here
$result = curl_exec($http);
$http_status = curl_getinfo($http, CURLINFO_HTTP_CODE);
curl_close($http);
echo $http_status;

16
นี่เป็นคำตอบที่ตรงที่สุดสำหรับคำถาม
Enigma Plus

6
อันนี้ไม่ต้องเพิกเฉยต่อร่างกายและทำการโทรเพียงครั้งเดียวทำให้เป็นคำตอบที่ฉันต้องการเช่นกัน
Mike_K

24
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0)");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,false);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,false);
curl_setopt($ch, CURLOPT_MAXREDIRS, 10);
curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
curl_setopt($ch, CURLOPT_TIMEOUT, 20);
$rt = curl_exec($ch);
$info = curl_getinfo($ch);
echo $info["http_code"];

1
คุณสร้างประเภทควรเป็น echo $ info ["http_code"]; แทน echo $ info ["http_code];
Ludo - ปิดการบันทึก


4

curl_getinfo - รับข้อมูลเกี่ยวกับการถ่ายโอนเฉพาะ

ตรวจสอบcurl_getinfo

<?php
// Create a curl handle
$ch = curl_init('http://www.yahoo.com/');

// Execute
curl_exec($ch);

// Check if any error occurred
if(!curl_errno($ch))
{
 $info = curl_getinfo($ch);

 echo 'Took ' . $info['total_time'] . ' seconds to send a request to ' . $info['url'];
}

// Close handle
curl_close($ch);


0

function getStatusCode()
{
    $url = 'example.com/test';
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_HEADER, true);    // we want headers
    curl_setopt($ch, CURLOPT_NOBODY, true);    // we don't need body
    curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
    curl_setopt($ch, CURLOPT_TIMEOUT,10);
    $output = curl_exec($ch);
    $httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
    curl_close($ch);

    return  $httpcode;
}
print_r(getStatusCode());

0

ใช้วิธีการhitCurlนี้เพื่อรับการตอบสนองของ api ทุกประเภทเช่นรับ/ โพสต์

        function hitCurl($url,$param = [],$type = 'POST'){
        $ch = curl_init();
        if(strtoupper($type) == 'GET'){
            $param = http_build_query((array)$param);
            $url = "{$url}?{$param}";
        }else{
            curl_setopt_array($ch,[
                CURLOPT_POST => (strtoupper($type) == 'POST'),
                CURLOPT_POSTFIELDS => (array)$param,
            ]);
        }
        curl_setopt_array($ch,[
            CURLOPT_URL => $url,
            CURLOPT_RETURNTRANSFER => true,
        ]);
        $resp = curl_exec($ch);
        $statusCode = curl_getinfo($ch,CURLINFO_HTTP_CODE);
        curl_close($ch);
        return [
            'statusCode' => $statusCode,
            'resp' => $resp
        ];
    }

ฟังก์ชั่นการสาธิตเพื่อทดสอบ API

 function fetchApiData(){
        $url = 'https://postman-echo.com/get';
        $resp = $this->hitCurl($url,[
            'foo1'=>'bar1',
            'foo2'=>'bar2'
        ],'get');
        $apiData = "Getting header code {$resp['statusCode']}";
        if($resp['statusCode'] == 200){
            $apiData = json_decode($resp['resp']);
        }
        echo "<pre>";
        print_r ($apiData);
        echo "</pre>";
    }

-3

นี่คือวิธีการแก้ปัญหาของฉันต้องได้รับสถานะ Http สำหรับการตรวจสอบสถานะของเซิร์ฟเวอร์เป็นประจำ

$url = 'http://www.example.com'; // Your server link

while(true) {

    $strHeader = get_headers($url)[0];

    $statusCode = substr($strHeader, 9, 3 );

    if($statusCode != 200 ) {
        echo 'Server down.';
        // Send email 
    }
    else {
        echo 'oK';
    }

    sleep(30);
}

1
Getheaders นั้นช้าเมื่อเทียบกับการม้วนงอ
Mike Kormendy

1
ทำไมคุณไม่ใช้ cron หรือ webhook แทนที่จะใช้ sleep และ loop ไม่สิ้นสุด
Ugur Kazdal
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.