Jump to content
  • 0

HTTP_Request


Bolmazov
 Share

Question

хочу сделать запрос на сайт и прочесть заголовки ответа.

	$request = new HTTP_Request("http://domgimnaziya5.ru/");
$request->sendRequest;
$header = $request->getResponseHeader();
$body = $request->getResponseBody();
var_dump($header);
var_dump($body);

выводит: array(0) { } bool(false)

ПЫЧИМУ?

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0

Нет, просто не "sendRequest;" а "sendRequest();" Разобрался.

Теперь вопрос следующий: как можно вытянуть из ответа коды ошибок (301, 302, 404... )?

Хочу просто знать, отослав запрос по адресу, существует страница (200) или нет (404 и т.п.).

Link to comment
Share on other sites

  • 0

ОТВЕТ

Так, я разобрался немного и так как на форуме это видимо еще не освещалось, то я кратко расскажу чего хотел и как сделал.

Задача: Написать PHP-скрипт проверяющий заданный ULR на существование (код < 400).

Решение: Как я убедился, для этих целей лучше использовать cURL.

У меня стоит DenWer, там всё просто.

Теперь сам код.

<?
$url_true = "http://forum.htmlbook.ru/index.php";// такой URL существует
$url_false = "http://forum.htmlbook.ru/indexxx.php";// а этот нет

$url = $url_true; //тут можете поменять $url_true на $url_false

$ch = curl_init();//curl_init - инициализирует CURL-сессию.
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 1); // читать заголовок
curl_setopt($ch, CURLOPT_NOBODY, 1); // читать ТОЛЬКО заголовок без тела
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);// При установке этого параметра в ненулевое значение CURL будет возвращать результат, а не выводить его.
curl_setopt($ch, CURLOPT_FRESH_CONNECT, 1); // не использовать cache

if (curl_exec($ch))
{
$httpcode = curl_getinfo($ch, CURLINFO_HTTP_CODE);
if ($httpcode < 400) {echo "$url - ВЕРНЫЙ!<br/>";}
else {echo "$url - НЕ ВЕРНЫЙ!<br/>";}
}
curl_close ( $ch );

?>

Ссылка на хорошее описание для cURL'a в PHP

Код рабочий. Рад, если чем-то помог.

Edited by Bolmazov
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy