本文实例讲述了PHP以post形式发送xml的方法。分享给大家供大家参考。具体方法如下:
方法一,使用curl:
代码如下:
...";
$url = 'http://www.xxxx.com';
$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,CURLOPT_POSTFIELDS,$xml_data);
$response = curl_exec($ch);
if(curl_errno($ch))
{
print curl_error($ch);
}
curl_close($ch);
方法二,使用fsockopen:
代码如下:
PS:这里再为大家提供几款关于xml操作的在线工具供大家参考使用:
希望本文所述对大家的PHP程序设计有所帮助。
原文链接:https://www.f2er.com/php/23532.html