随笔分类 -  XML

摘要:一、PHP获取POST数据的几种方法 方法1、最常见的方法是:$_POST['fieldname'];说明:只能接收Content-Type: application/x-www-form-urlencoded提交的数据解释:也就是表单POST过来的数据 方法2、file_get_contents( 阅读全文
posted @ 2016-11-02 11:31 Durriya 阅读(12487) 评论(0) 推荐(0)
摘要:'; $xml .= 'name'; $xml .= '14'; $xml .= ''; $url = 'http://localhost/tp/index.php/Home/Url/get'; $ch = curl_init(); //初始化curl curl_setopt($ch, CURLOP... 阅读全文
posted @ 2016-11-02 11:16 Durriya 阅读(1859) 评论(0) 推荐(0)
摘要:post的数据为xml字符串,通过 $xml = simplexml_load_string($post_data);转换成xml对象 阅读全文
posted @ 2016-10-13 08:48 Durriya 阅读(5257) 评论(0) 推荐(0)