Non capisco quando echo $ httpCode ottengo sempre 0, mi aspettavo 404 quando cambio $ html_brand in un URL non funzionante. C'è qualcosa che mi manca o che non conosco? Grazie.
//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);