Ich verstehe nicht, wenn ich $ httpCode wiedergebe, bekomme ich immer 0, ich hatte 404 erwartet, als ich $ html_brand in eine kaputte URL verwandelte. Gibt es etwas, das ich vermisse oder von dem ich nichts weiß? Vielen Dank.
//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);