You should specify the first argument (int $method) using one of the Predefined HTTP request method constants specified here:
http://www.php.net/manual/en/http.constants.php
For example:
<?php
http_request (HTTP_METH_PUT, 'www.example.com');
?>
(PECL pecl_http >= 1.0.0)
http_request — Выполняет пользовательский запрос
$method
, string $url
[, string $body
[, array $options
[, array &$info
]]] )Выполняет пользовательский HTTP запрос к переданному url.
Смотрите полный список опции запроса.
method
Метод запроса
url
URL
body
Тело запроса
options
info
Возвращает строку с HTTP-ответом(ами) при успешном завершении работы, или FALSE
при ошибке.
You should specify the first argument (int $method) using one of the Predefined HTTP request method constants specified here:
http://www.php.net/manual/en/http.constants.php
For example:
<?php
http_request (HTTP_METH_PUT, 'www.example.com');
?>