Questo può essere fatto ottenendo il codice di stato HTTP (404 = non trovato), possibile con file_get_contents
Documenti che utilizzano le opzioni di contesto. Il codice seguente tiene conto dei reindirizzamenti e restituirà il codice di stato della destinazione finale ( Demo ):
$url = 'http://example.com/';
$code = FALSE;
$options['http'] = array(
'method' => "HEAD",
'ignore_errors' => 1
);
$body = file_get_contents($url, NULL, stream_context_create($options));
foreach($http_response_header as $header)
sscanf($header, 'HTTP/%*d.%*d %d', $code);
echo "Status code: $code";
Se non vuoi seguire i reindirizzamenti, puoi farlo in modo simile ( Demo ):
$url = 'http://example.com/';
$code = FALSE;
$options['http'] = array(
'method' => "HEAD",
'ignore_errors' => 1,
'max_redirects' => 0
);
$body = file_get_contents($url, NULL, stream_context_create($options));
sscanf($http_response_header[0], 'HTTP/%*d.%*d %d', $code);
echo "Status code: $code";
Alcune delle funzioni, opzioni e variabili in uso sono spiegate con maggiori dettagli in un post del blog che ho scritto: HEAD prima con PHP Streams .