用户名:
密 码: 记住
您当前的位置:首页 > 网络编程 > php教程

php 接收与发送xml文件

时间:2015-01-23  来源:西部数据  作者:西部数据
  1. //接收xml: 
  2. $xml = file_get_contents('php://input'); 
  3.   
  4. //发送(post): 
  5. $xml_data = <xml>...</xml>"; 
  6. $url = http://dest_url; 
  7. $header[] = "Content-type: text/xml";//定义content-type为xml 
  8. curl_setopt($ch, CURLOPT_URL, $url); 
  9. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  10. curl_setopt($ch, CURLOPT_HTTPHEADER, $header); 
  11. curl_setopt($ch, CURLOPT_POST, 1); 
  12. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data); 
  13. $response = curl_exec($ch); 
  14. if(curl_errno($ch)) 
  15.     print curl_error($ch); 
  16. curl_close($ch);  
  17.  //开源代码phpfensi.com 
  18. //或者: 
  19. $fp = fsockopen($server, 80); 
  20. fputs($fp"POST $path HTTP/1.0rn"); 
  21. fputs($fp"Host: $serverrn"); 
  22. fputs($fp"Content-Type: text/xmlrn"); 
  23. fputs($fp"Content-Length: $contentLengthrn"); 
  24. fputs($fp"Connection: closern"); 
  25. fputs($fp"rn"); // all headers sent 
  26. fputs($fp$xml_data); 
  27. $result = ''
  28. while (!feof($fp)) { 
  29. $result .= fgets($fp, 128); 
  30. return $result
来顶一下
返回首页
返回首页
推荐资讯
WiFi太不安全:7岁女孩11分钟内入侵公共网络 WiFi太不安全:7岁女孩11分钟内入侵近期刚刚发布研究说WiFi网络能获得人们手机里多少私人信息,
不服跑个分?人工智能也出现“刷分”乱象 不服跑个分?人工智能也出现“刷分2014年,人工智能领域突然爆发,成为了科研和科技创业的热门
相关文章
    无相关信息
栏目更新
栏目热门