码迷,mamicode.com
首页 > Web开发 > 详细

php使用curl提交xml数据

时间:2014-08-13 22:45:47      阅读:449      评论:0      收藏:0      [点我收藏+]

标签:http   使用   os   io   数据   ar   ad   type   

$str_callback_url="xxxx.com/api.php";
$str_callback_url="xml数据";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $str_callback_url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_setopt($ch, CURLOPT_TIMEOUT, 5);
curl_setopt($ch, CURLOPT_POST, 1);
$arr_header[] = "Content-type: text/xml";
curl_setopt($ch, CURLOPT_HTTPHEADER, $arr_header);
curl_setopt($ch, CURLOPT_POSTFIELDS, $str_xml);
$str_return_data = curl_exec($ch);

php使用curl提交xml数据,布布扣,bubuko.com

php使用curl提交xml数据

标签:http   使用   os   io   数据   ar   ad   type   

原文地址:http://my.oschina.net/u/728291/blog/300866

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!