PHP가 http 상태를 결정하는 방법: [header("HTTP/1.1 404 Not Found"); $url="http://www.xxxx.com/preg.php"; $ch = cur_init(); .].
이 기사의 운영 환경: 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 training
위 내용은 PHP에서 http 상태를 확인하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!