php使用socket post数据到其它web服务器的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-27 14:32:29 浏览: 评论:0
这篇文章主要介绍了php使用socket post数据到其它web服务器的方法,涉及php使用socket传输数据的相关技巧,需要的朋友可以参考下。
本文实例讲述了php使用socket post数据到其它web服务器的方法,分享给大家供大家参考,具体实现方法如下:
- function post_request($url, $data, $referer='') {
- // Convert the data array into URL Parameters like a=b&foo=bar etc.
- $data = http_build_query($data);
- // parse the given URL
- $url = parse_url($url);
- if ($url['scheme'] != 'http') {
- die('Error: Only HTTP request are supported !');
- }
- // extract host and path:
- $host = $url['host'];
- $path = $url['path'];
- // open a socket connection on port 80 - timeout: 30 sec
- $fp = fsockopen($host, 80, $errno, $errstr, 30);
- if ($fp){
- // send the request headers:
- fputs($fp, "POST $path HTTP/1.1\r\n");
- fputs($fp, "Host: $host\r\n");
- if ($referer != '')
- fputs($fp, "Referer: $referer\r\n");
- fputs($fp, "Content-type: application/x-www-form-urlencoded\r\n");
- fputs($fp, "Content-length: ". strlen($data) ."\r\n");
- fputs($fp, "Connection: close\r\n\r\n");
- fputs($fp, $data);
- $result = '';
- while(!feof($fp)) {
- // receive the results of the request
- $result .= fgets($fp, 128);
- }
- }
- else {
- return array(
- 'status' => 'err',
- 'error' => "$errstr ($errno)"
- );
- }
- // close the socket connection:
- fclose($fp);
- // split the result header from the content
- $result = explode("\r\n\r\n", $result, 2);
- $header = isset($result[0]) ? $result[0] : '';
- $content = isset($result[1]) ? $result[1] : '';
- // return as structured array:
- return array(
- 'status' => 'ok',
- 'header' => $header,
- 'content' => $content
- );
- }
- //使用方法
- // Submit those variables to the server
- $post_data = array(
- 'test' => 'foobar',
- 'okay' => 'yes',
- 'number' => 2
- );
- // Send a request to example.com
- $result = post_request('http://www.phpfensi.com/', $post_data);
- if ($result['status'] == 'ok'){
- // Print headers
- echo $result['header'];
- echo '<hr />';
- // print the result of the whole request:
- echo $result['content'];
- }
- else {
- echo 'A error occured: ' . $result['error'];
- }
Tags: socket web服务器
相关文章
- ·php socket讲解与实例(2013-12-09)
- ·PHP socket模拟POST请求实例(2014-01-18)
- ·php socket 使用smtp服务器发送邮件(2014-01-22)
- ·php中socket实现GET与POST异步提交数据(2014-06-16)
- ·php socket客户端和服务端互相通讯实例(2014-06-19)
- ·PHP中向socket服务器收发数据(2014-08-28)
- ·PHP利用socket模拟post之fsockopen发送数据(2014-09-05)
- ·php Socket 创建 监听等实例(2014-09-09)
- ·php socket通信机制实例说明与代码(2014-09-09)
- ·PHP不支持socket_connect函数开启步骤(2014-09-10)
- ·php基于Socket实现多线程开发教程(2015-04-15)
- ·PHP聊天室_WebSocket技术实战(2016-08-25)
- ·php中socket服务的模型下的编程方式(同步和异步)(2018-09-18)
- ·php socket服务的模型以及实现 多进程IO复用libevent(2018-09-18)
- ·php实现socket推送技术的示例(2018-11-04)
- ·php与flash as3 socket通信传送文件实现代码(2021-03-31)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)