使用HTTP头的POST函数返回一个变量的结果
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用HTTP头的POST函数返回一个变量的结果相关的知识,希望对你有一定的参考价值。
This function dosen't use curl, or any other libraries. Just include it in your function library and use it like this:$Post_result = _post('http://www.yourdomain.com/your_path/post_api.php',"method=fetchJson¶ms=select * from user");
function _post($url, $data, $optional_headers = null) { 'method' => 'POST', 'content' => $data )); if ($optional_headers !== null) { $params['http']['header'] = $optional_headers; } if (!$fp) { throw new Exception("Problem with $url, $php_errormsg"); } if ($response === false) { throw new Exception("Problem reading data from $url, $php_errormsg"); } return $response; }
以上是关于使用HTTP头的POST函数返回一个变量的结果的主要内容,如果未能解决你的问题,请参考以下文章