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

php返回json,xml,JSONP等格式的数据

时间:2016-06-02 21:38:49      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:

php返回json,xml,JSONP等格式的数据

返回json数据:

header(‘Content-Type:application/json; charset=utf-8‘);
$arr = array(‘a‘=>1,‘b‘=>2);
exit(json_encode($data));

注意:如果不加header直接输出json_encode的值的话,返回的是字符串不是对象,js那边就需要先eval(‘(‘+data+‘)‘)转化为对象,在取值

 

返回xml数据:

header(‘Content-Type:text/xml; charset=utf-8‘);
exit($xml);

 

返回jsonp数据:

$arr = array(‘a‘=>1, ‘b‘=>2, ‘c‘=>3);
$json = json_encode($arr);
$callback = $_GET[‘callback‘];
exit($callback."($json)");
//注意callback是js传过来的参数名称

 

顺便说下thinkphp如何返回各种数据:

$this->ajaxReturn (json_encode($arr),‘JSON‘);

$this->ajaxReturn (json_encode($arr),‘JSONP‘);

$this->ajaxReturn (json_encode($arr),‘XML‘);

php返回json,xml,JSONP等格式的数据

标签:

原文地址:http://www.cnblogs.com/blueskycc/p/5554255.html

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