Проверить атрибут ссылки href - PullRequest
0 голосов
/ 23 марта 2012

Мне нужно периодически проходить по ссылкам в моей базе данных PHP, чтобы проверить, ведет ли ссылка к действительной странице.Если ссылка истекла или является недействительной, я не хочу выводить ее.Как я могу проверить, что значение href приводит к правильной странице?

Спасибо за любые * указатели.

Ответы [ 3 ]

1 голос
/ 23 марта 2012

Вы также можете использовать несколько запросов CUrl каждый раз для более быстрой проверки всего списка. Проверьте здесь

1 голос
/ 23 марта 2012

Посмотри в локон.Это позволяет вам получить сайт в php http://www.php.net/manual/en/function.curl-exec.php Затем просто проверьте код статуса в ответе или что-то вроде тега заголовка.

0 голосов
/ 23 марта 2012

Я сам как бы нуб, но я бы предложил использовать cURL. Быстрый поиск Google с использованием показал следующий код (который я не проверял):

<?php

$statusCode = validate($_REQUEST['url']);
if ($statusCode==’200′)
  echo ‘Voila! URL ‘.$_REQUEST['url'].
  ’ exists, returned code is :’.$statusCode;
else
  echo ‘Opps! URL ‘.$_REQUEST['url'].
  ’ does NOT exist, returned code is :’.$statusCode;

function validateurl($url)
{
  // Initialize the handle
  $ch = curl_init();
  // Set the URL to be executed
  curl_setopt($ch, CURLOPT_URL, $url);
  // Set the curl option to include the header in the output
  curl_setopt($ch, CURLOPT_HEADER, true);
  // Set the curl option NOT to output the body content
  curl_setopt($ch, CURLOPT_NOBODY, true);
  /* Set to TRUE to return the transfer
  as a string of the return value of curl_exec(),
  instead of outputting it out directly */
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  // Execute it
  $data = curl_exec($ch);
  // Finally close the handle
  curl_close($ch);
  /* In this case, we’re interested in
  only the HTTP status code returned, therefore we
  use preg_match to extract it, so in the second element
  of the returned array is the status code */
  preg_match(“/HTTP\/1\.[1|0]\s(\d{3})/”,$data,$matches);
  return $matches[1];
}
?> 

Источник: http://www.ajaxapp.com/2009/03/23/to-validate-if-an-url-exists-use-php-curl/

...