PHP/HTML/HTTP Request — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Текущая версия на 07:05, 26 мая 2010
Fetching a URL with HTTP_Request
<?php
require_once "HTTP/Request.php";
$r = new HTTP_Request("http://www.example.ru/robots.txt");
$r->sendRequest();
$page = $r->getResponseBody();
?>