php判斷http狀態的方法:【header("HTTP/1.1 404 Not Found"); $url="http://www.xxxx.com/preg.php"; $ch = curl_init( ); curl_seto...】。
本文操作環境:windows10系統、php 7、thinkpad t480電腦。
我們在實際的專案開發中有時會需要知道遠端的URL位址能否正常訪問,透過判斷其正常與否來決定是否進行進行下一步的操作。那我們該如何判斷HTTP的狀態呢?其實不難,我們可以採取以下兩種方式,接下來就讓我們一起來看看這兩種方式吧。
檔案preg.php
header("HTTP/1.1 404 Not Found");
第一種方法:
$url = "http://www.demo.com/preg.php"; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_HEADER, TRUE); curl_setopt($ch, CURLOPT_NOBODY, TRUE); // remove body curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); $head = curl_exec($ch); $httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE); echo $httpCode; curl_close($ch);
執行結果:
404
第二種方法:
echo '<pre class="brush:php;toolbar:false">'; print_r(get_headers("http://www.demo.com/preg.php",1));
運行結果:
Array ( [0] => HTTP/1.1 404 Not Found [Date] => Fri, 28 Sep 2018 09:27:03 GMT [Server] => Apache/2.4.23 (Win32) OpenSSL/1.0.2j PHP/5.5.38 [X-Powered-By] => PHP/5.5.38 [Content-Length] => 0 [Content-Type] => text/html )
推薦學習:php培訓
以上是php怎麼判斷http狀態的詳細內容。更多資訊請關注PHP中文網其他相關文章!