使用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&params=select * from user");
  1. function _post($url, $data, $optional_headers = null)
  2. {
  3. $params = array('http' => array(
  4. 'method' => 'POST',
  5. 'content' => $data
  6. ));
  7. if ($optional_headers !== null) {
  8. $params['http']['header'] = $optional_headers;
  9. }
  10. $ctx = stream_context_create($params);
  11. $fp = @fopen($url, 'rb', false, $ctx);
  12. if (!$fp) {
  13. throw new Exception("Problem with $url, $php_errormsg");
  14. }
  15. $response = @stream_get_contents($fp);
  16. if ($response === false) {
  17. throw new Exception("Problem reading data from $url, $php_errormsg");
  18. }
  19. return $response;
  20. }

以上是关于使用HTTP头的POST函数返回一个变量的结果的主要内容,如果未能解决你的问题,请参考以下文章

从 http Post 返回 Observable

用PHP怎么发送HTTP POST 请求。怎么获得返回结果。

PHP 使用header函数设置HTTP头的示例解析 表头

函数:wp_insert_post

在 IN() 函数中使用用户定义的会话变量返回意外结果

pcaptransfertimedout