Je ne comprends pas quand j'écho $ httpCode J'obtiens toujours 0, je m'attendais à 404 quand je change $ html_brand en une URL cassée. Y a-t-il quelque chose que je rate ou que je ne sais pas? Merci.
//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);