我不明白当我回显 $httpCode 时,我总是得到0,当我将 $html _ brand 更改为一个破碎的 URL 时,我期望得到404。有没有什么我不知道的?谢谢。
//check if url exist
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $html_brand);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE);
$response = curl_exec($ch);
$httpCode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($httpCode == 404) {
echo "The Web Page Cannot Be Found";
return;
}
curl_close($ch);