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 — Effectue une requête personnalisée
$method
, string $url
[, string $body
[, array $options
[, array &$info
]]] )Effectue une requête HTTP personnalisée sur l'URL suppliée.
Voir la liste complète des options de demande.
method
Méthode de la requête
url
URL
body
Corps de la requête
options
info
Retourne la(les) réponse(s) HTTP sous la forme d'une chaîne de
caractères en cas de succès, ou FALSE
si une erreur survient.
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');
?>