php 接收与发送xml文件
发布:smiling 来源: PHP粉丝网 添加日期:2014-08-20 15:54:41 浏览: 评论:0
- //接收xml:
- $xml = file_get_contents('php://input');
- //发送(post):
- $xml_data = <xml>...</xml>";
- $url = http://dest_url;
- $header[] = "Content-type: text/xml";//定义content-type为xml
- curl_setopt($ch, CURLOPT_URL, $url);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt($ch, CURLOPT_HTTPHEADER, $header);
- curl_setopt($ch, CURLOPT_POST, 1);
- curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);
- $response = curl_exec($ch);
- if(curl_errno($ch))
- {
- print curl_error($ch);
- }
- curl_close($ch);
- //开源代码phpfensi.com
- //或者:
- $fp = fsockopen($server, 80);
- fputs($fp, "POST $path HTTP/1.0rn");
- fputs($fp, "Host: $serverrn");
- fputs($fp, "Content-Type: text/xmlrn");
- fputs($fp, "Content-Length: $contentLengthrn");
- fputs($fp, "Connection: closern");
- fputs($fp, "rn"); // all headers sent
- fputs($fp, $xml_data);
- $result = '';
- while (!feof($fp)) {
- $result .= fgets($fp, 128);
- }
- return $result;
Tags: php接收 php发送xml文件
相关文章
- ·PHP接收POST数据的方法总结(2015-12-24)
- ·PHP中实现接收多个name相同但Value不相同表单数据实例(2021-05-09)
- ·php发送与接收流文件的方法(2021-05-11)
- ·php post json参数的传递和接收处理方法(2021-09-23)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)