php获取通过http协议post过来的xml数据

WBOY
发布: 2016-07-25 09:10:14
原创
779 人浏览过
  1. $xml_data =''.
  2. ''.
  3. '1234567890'.
  4. 'lgsoftwares'.
  5. 'mypassword'.
  6. 'phpmind.com'.
  7. '
  8. '.
  9. ''.
  10. ''.
  11. ''.
  12. '
  13. '.
  14. ''.
  15. 'JHM'.
  16. 'OGGSHE'.
  17. '101009'.
  18. '101509'.
  19. '1'.
  20. '
  21. '.
  22. '
  23. ';
  24. $URL = "https://www.abc.com/path/";
  25. $ch = curl_init($URL);
  26. curl_setopt($ch, CURLOPT_MUTE, 1);
  27. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  28. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  29. curl_setopt($ch, CURLOPT_POST, 1);
  30. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml'));
  31. curl_setopt($ch, CURLOPT_POSTFIELDS, "$xml_data");
  32. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  33. $output = curl_exec($ch);
  34. curl_close($ch);
  35. ?>
复制代码


来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责声明 Sitemap
PHP中文网:公益在线PHP培训,帮助PHP学习者快速成长!