我已使用以下命令
为php安装了http扩展**pecl install pecl_http**
它的成功,但我找不到我的http.so扩展名 / usr / lib / php5 / 20121212 + lfs 文件夹。 我有什么需要做的吗?
答案 0 :(得分:0)
我使用以下功能实现了http发布。 我刚刚在互联网上找到它。
函数http_post_lite($ url,$ data,$ headers = null){
$data = http_build_query($data);
$opts = array('http' => array('method' => 'POST', 'content' => $data,'header' => "Content-Type: application/x-www-form-urlencoded\r\n"));
if($headers) {
$opts['http']['header'] = $headers;
}
$st = stream_context_create($opts);
$fp = fopen($url, 'rb', false, $st);
if(!$fp) {
return false;
}
return stream_get_contents($fp);
}