文字

http_post_data

(PECL pecl_http >= 0.1.0)

http_post_dataPerform POST request with pre-encoded data

说明

string http_post_data ( string $url , string $data [, array $options [, array &$info ]] )

Performs an HTTP POST request on the supplied url.

请查阅完整的 request 选项组 列表。

参数

url

URL

data

String containing the pre-encoded post data

options

request 选项组

info

请求/响应信息

返回值

成功时用字符串返回 HTTP 响应,失败时返回 FALSE

用户评论:

[#1] Jonny L [2015-04-13 22:31:50]

Pecl HTTP doesn't seem to include this function, tested on latest ubuntu

 1  execute
    sudo pecl install raphf propro pecl_http
2   create /etc/php5/mods-available/zhttp.ini
    extension=raphf.so
    extension=propro.so
    extension=http.so
 3  execute
    sudo php5enmod zhttp
 4 restart your web server

 

Running php -r 'http_post_data();' still gives me Call to undefined function http_post_data()

上一篇: 下一篇: