博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
php如何发post请求
阅读量:6462 次
发布时间:2019-06-23

本文共 1520 字,大约阅读时间需要 5 分钟。

/**     *  post提交数据     * @param  string $url 请求Url     * @param  array $datas 提交的数据     * @return url响应返回的html     */    function sendPost($url, $datas) {        $temps = array();        foreach ($datas as $key => $value) {            $temps[] = sprintf('%s=%s', $key, $value);        }        $post_data = implode('&', $temps);        $url_info = parse_url($url);        if(empty($url_info['port']))        {            $url_info['port']=80;        }        $httpheader = "POST " . $url_info['path'] . " HTTP/1.0\r\n";         //get请求,这里就改为get        $httpheader.= "Host:" . $url_info['host'] . "\r\n";        $httpheader.= "Content-Type:application/x-www-form-urlencoded\r\n";        $httpheader.= "Content-Length:" . strlen($post_data) . "\r\n";       //描述HTTP消息实体的传输长度        $httpheader.= "Connection:close\r\n\r\n";        $httpheader.= $post_data;        $fd = fsockopen($url_info['host'], $url_info['port']);          //post请求        fwrite($fd, $httpheader);        $gets = "";        $headerFlag = true;        while (!feof($fd)) {                          //检测是否到达了文件末尾,如果服务器没有关闭fsockopen,feof会等到超时   默认的超时限制是 60 秒,可以使用 stream_set_timeout() 来改变这个值。            if (($header = @fgets($fd)) && ($header == "\r\n" || $header == "\n")) {                break;            }        }        while (!feof($fd)) {            $gets.= fread($fd, 128);     //如果只是想将一个文件的内容读入到一个字符串中,请使用 ,它的性能比 fread() 好得多        }        fclose($fd);        return $gets;    }

亲测好用

转载于:https://www.cnblogs.com/hanshuai0921/p/7928975.html

你可能感兴趣的文章
谈Linq To Sql的优劣--纯个人观点
查看>>
HDU 4996 Revenge of LIS(DP)
查看>>
App里面如何正确显示用户头像
查看>>
DATAGUARD维护:从库宕机后如何恢复到管理恢复模式
查看>>
Android中的PID和UID
查看>>
U-BOOT之一:BootLoader 的概念与功能
查看>>
我的路上
查看>>
Velocity处理多余空白和多余空白行问题
查看>>
内容开发平台(PLATFORM)
查看>>
java值传递
查看>>
判断一个数是否为素数的一个讨论(一)
查看>>
DB2与oracle有什么区别
查看>>
创建一个多级文件目录
查看>>
Picasa生成图片幻灯片页面图文教程
查看>>
js获取当前时间的前一天/后一天
查看>>
[洛谷P3978][TJOI2015]概率论
查看>>
Python学习——编程语言介绍
查看>>
Python字符串的格式化
查看>>
C#反射---属性
查看>>
服务器常用的状态码及其对应的含义如下
查看>>