PHP 来自PHP的HTTP POST,没有cURL

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 来自PHP的HTTP POST,没有cURL相关的知识,希望对你有一定的参考价值。

<?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;
     }
     $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;
  }

以上是关于PHP 来自PHP的HTTP POST,没有cURL的主要内容,如果未能解决你的问题,请参考以下文章

PHP HTTP 引荐来源网址

php 创建 zip 文件(来自 post 附件 wordpress)

JQuery'afterunload'事件没有在PHP中将来自$ .post的响应调用到mail.log

详解php的curl几个函数

PHP表单-PHP $_POST 变量

php 你如何确保 $_POST 数据来自你的表单而不是外部影响?