comment vérifier si une URL existe ou pas - erreur 404? (En utilisant php)comment vérifier si une URL existe ou pas - erreur 404? (en utilisant php)
<?php
$url = "http://www.faressoft.org/";
?>
comment vérifier si une URL existe ou pas - erreur 404? (En utilisant php)comment vérifier si une URL existe ou pas - erreur 404? (en utilisant php)
<?php
$url = "http://www.faressoft.org/";
?>
Si vous avez allow_url_fopen
, vous pouvez faire:
$exists = ($fp = fopen("http://www.faressoft.org/", "r")) !== FALSE;
if ($fp) fclose($fp);
bien à proprement parler, cela ne reviendra pas faux seulement pour 404 erreurs. Il est possible d'utiliser des contextes de flux pour obtenir cette information, mais une meilleure option est d'utiliser l'extension boucle:
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "http://www.example.com/notfound");
curl_setopt($ch, CURLOPT_NOBODY, 1);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_exec($ch);
$is404 = curl_getinfo($ch, CURLINFO_HTTP_CODE) == 404;
curl_close($ch);
Vous pouvez utiliser boucle qui est une bibliothèque PHP. Avec boucle, vous pouvez interroger la page et vérifiez le code d'erreur appelé:
CURLE_HTTP_RETURNED_ERROR (22)
Ceci est retourné si CURLOPT_FAILONERROR est TRUE et le serveur renvoie HTTP un code d'erreur est> = 400.
de la documentation CURL à php.net:
<?php
// Create a curl handle to a non-existing location
$ch = curl_init('http://404.php.net/');
// Execute
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_exec($ch);
// Check if any error occured
if(curl_errno($ch))
{
echo 'Curl error: ' . curl_error($ch);
}
// Close handle
curl_close($ch);
?>
le plus simple pour vérifier le 404/200 ou etc ..
<?php
$mylink="http://site.com";
$handler = curl_init($mylink);
curl_setopt($handler, CURLOPT_RETURNTRANSFER, TRUE);
$re = curl_exec($handler);
$httpcdd = curl_getinfo($handler, CURLINFO_HTTP_CODE);
if ($httpcdd == '404')
{ echo 'it is 404';}
else {echo 'it is not 404';}
?>
cela ne fonctionne pas! http://www.fahwa.com/check.php?url=http://www.faressoft.org – faressoft
@fare Vous avez raison, il semble que le wrapper http ne supporte pas les statistiques statiques. Voir ma modification. – Artefacto
très bien, mais comment masquer erreur msg et imprimer false. http://www.fahwa.com/check.php?url=http://www.google.com.sa/anything http://www.fahwa.com/check.php?url=http:/ /www.google.com.sa – faressoft