仅使用php从CURL返回响应代码200

时间:2016-05-18 22:00:22

标签: php curl

我尝试使用CURL函数

返回特定网址的标头响应

这是我的代码

$strURL = "http://162.253.132.165";



$resCurl = curl_init();

//set URL and other appropriate options
curl_setopt($resCurl, CURLOPT_URL, $strURL);
curl_setopt($resCurl, CURLOPT_HEADER, true);
curl_setopt($resCurl, CURLOPT_NOBODY, true);
curl_setopt($resCurl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($resCurl, CURLOPT_FOLLOWLOCATION, true);

//get the headers
$strHeaders = curl_exec($resCurl);

//close cURL
curl_close($resCurl);

echo $strHeaders;

enter image description here

问题是我只需要200 OK的成功响应输出

我将它用于SSL和https协议 我怎么能这样做?

0 个答案:

没有答案