©
本文档使用
php.cn手册 发布
(PECL pecl_http >= 0.1.0)
http_post_data — Perform POST request with pre-encoded data
$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()