当前位置:首页 > PHP教程 > php应用 > 列表

php通过curl方式实现发送接收xml数据

发布:smiling 来源: PHP粉丝网  添加日期:2024-03-08 17:38:47 浏览: 评论:0 

这篇文章主要为大家详细介绍了php如何通过curl方式实现发送接收xml数据,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下

1、php通过curl方式发送xml数据

  1. <?php 
  2. function sendXmlData($url$xmlData) { 
  3.     $ch = curl_init(); 
  4.     curl_setopt($ch, CURLOPT_URL, $url); 
  5.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  6.     curl_setopt($ch, CURLOPT_POST, true); 
  7.     curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlData); 
  8.     curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml')); 
  9.     $response = curl_exec($ch); 
  10.     curl_close($ch); 
  11.     return $response
  12. // 使用示例 
  13. $xmlData = '<root><name>John</name><age>25</age></root>'
  14. $url = 'http://localhost/test22.php'
  15. $response = sendXmlData($url$xmlData); 
  16. // 处理响应 
  17. echo $response
  18.  
  19. <?php 
  20. function sendXmlData($url$xmlData) { 
  21.     $ch = curl_init(); 
  22.     curl_setopt($ch, CURLOPT_URL, $url); 
  23.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  24.     curl_setopt($ch, CURLOPT_POST, true); 
  25.     curl_setopt($ch, CURLOPT_POSTFIELDS, $xmlData); 
  26.     curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: text/xml')); 
  27.     $response = curl_exec($ch); 
  28.     curl_close($ch); 
  29.     return $response
  30. // 使用示例 
  31. $xmlData = '<root><name>John</name><age>25</age></root>'
  32. $url = 'http://localhost/test22.php'
  33. $response = sendXmlData($url$xmlData); 
  34. // 处理响应 
  35. echo $response

发送XML数据的函数名为sendXmlData,它接受两个参数:$url是目标服务器的URL,$xmlData是要发送的XML数据。函数内部使用curl函数发送HTTP POST请求,并返回服务器的响应。您可以直接调用sendXmlData函数来发送XML数据并处理响应结果。

2、php通过file_get_contents接受curl方式发送xml数据

  1. <?php 
  2.    
  3. function receiveXmlData() { 
  4.     $xmlData = file_get_contents('php://input'); 
  5.     // 解析XML数据 
  6.     $xml = simplexml_load_string($xmlData); 
  7.     // 处理XML数据 
  8.     // 例如,获取根元素的值 
  9.     $name = $xml->name; 
  10.     $age = $xml->age; 
  11.     // 返回处理结果 
  12.     $response = "Received XML Data:\nName: $name\nAge: $age"
  13.     return $response
  14. // 使用示例 
  15. $response = receiveXmlData(); 
  16. echo $response

函数receiveXmlData从输入流(php://input)中获取接收到的XML数据,并使用simplexml_load_string函数将其解析为可操作的XML对象。您可以根据需要进一步处理XML数据,并创建一个包含您要返回的响应的字符串。最后,可以通过调用receiveXmlData函数并将结果输出来查看处理结果

结果:

php通过curl方式实现发送接收xml数据

方法补充

除了上文的方法,小编还为大家整理了其他PHP接收发送XML数据的方法,希望对大家有所帮助。

使用CURL发送xml数据

  1. <?PHP 
  2. $xml_data = '<xml>xml</xml>';//发送的xml 
  3. $url = 'http://localhost/xml/getXML.php';//接收XML地址 
  4. $header[] = "Content-type: text/xml";//定义content-type为xml 
  5. $ch = curl_init(); //初始化curl 
  6. curl_setopt($ch, CURLOPT_URL, $url);//设置链接 
  7. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//设置是否返回信息 
  8. curl_setopt($ch, CURLOPT_HTTPHEADER, $header);//设置HTTP头 
  9. curl_setopt($ch, CURLOPT_POST, 1);//设置为POST方式 
  10. curl_setopt($ch, CURLOPT_POSTFIELDS, $xml_data);//POST数据 
  11. curl_setopt($ch, CURLOPT_TIMEOUT, 10); //设置超时时间为10 
  12. $response = curl_exec($ch);//接收返回信息 
  13. if(curl_errno($ch)){//出错则显示错误信息 
  14. print curl_error($ch); 
  15. curl_close($ch); //关闭curl链接 
  16. echo $response;//显示返回信息 

接收XML数据

  1. <?php 
  2. $xml = file_get_contents('php://input');//监听是否有数据传入 
  3. if($xml!=''){//如果有数据传入,则将传入的数据写入到xml.txt文件 
  4. $fp = fopen('xml.txt','w'); 
  5. fwrite($fp,$xml); 
  6. fclose($fp); 
  7. exit('OK');//写入成功后返回成功信息 
  8. die('Fail');//没有数据则直接返回失败信息 

php发送和接收json、xml数据

  1. function sendRequest($requestXML
  2. $server = 'http://www.something.com/myapp'
  3. $headers = array
  4. "Content-type: text/xml" 
  5. ,"Content-length: ".strlen($requestXML
  6. ,"Connection: close" 
  7. ); 
  8. $ch = curl_init(); 
  9. curl_setopt($ch, CURLOPT_URL, $server); 
  10. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); 
  11. curl_setopt($ch, CURLOPT_TIMEOUT, 100); 
  12. curl_setopt($ch, CURLOPT_POST, true); 
  13. curl_setopt($ch, CURLOPT_POSTFIELDS, $requestXML); 
  14. curl_setopt($ch, CURLOPT_HTTPHEADER, $headers); 
  15. $data = curl_exec($ch); 
  16. if(curl_errno($ch)){ 
  17. print curl_error($ch); 
  18. echo "  something went wrong..... try later"
  19. }else
  20. curl_close($ch); 
  21. return $data
  22. }

Tags: curl发送接收xml

分享到: