一个php发送post请求的函数。
代码如下:
用法如下:
代码如下:
<?php
function do_post_request($url, $data, $optional_headers = null)
{
$params = array('http' => array(
'method' => 'POST',
'content' => $data
));
if ($optional_headers !== null) {
$params['http']['header'] = $optional_headers;
} //脚本学堂 http://www.jbxue.com
$ctx = stream_context_create($params);
$fp = @fopen($url, 'rb', false, $ctx);
if (!$fp) {
throw new Exception("Problem with $url, $php_errormsg");
}
$response = @stream_get_contents($fp);
if ($response === false) {
throw new Exception("Problem reading data from $url, $php_errormsg");
}
return $response;
}用法如下:
//json字符串
$data = "{...}";
//转换成数组
$data=json_decode($data,true);
$postdata = http_build_query($data);
do_post_request("http://localhost",$postdata);
本文介绍了一个使用PHP实现的发送POST请求的函数。该函数通过设置HTTP头部和内容参数来发送请求,并能处理自定义头部信息。示例展示了如何将JSON数据转换为适合此函数使用的格式。
1041

被折叠的 条评论
为什么被折叠?



