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 — Özel bir istek yapar
$yöntem
[, string $url
[, string $gövde
[, array $seçenekler
[, array &$bilgi
]]]] )
Belirtilen url
üzerinde özel bir HTTP isteği yapar.
Tam liste için istek seçenekleri sayfasına bakınız.
yöntem
İstek yöntemi.
url
URL
gövde
İstek gövdesi.
seçenekler
info
Başarı durumunda HTTP yanıt(lar)ı dizge
olarak döner, başarısızlık durumunda FALSE
değeri döner.
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');
?>