php如何返回json,xml,JSONP等格式的数据
php如何返回json
、JSONP
、xml
等格式的数据,下面编程教程网小编带大家了解一下代码!
1、返回json数据
header('Content-Type:application/json; charset=utf-8');
$arr = array('a'=>123,'b'=>245);
exit(json_encode($data));
2、返回JSONP数据
$arr = array('a'=>123, 'b'=>234, 'c'=>345);
$json = json_encode($arr);
$callback = $_GET['callback'];
exit($callback."($json)");
3、返回xml数据
header('Content-Type:text/xml; charset=utf-8');
exit($xml);
以上是编程学习网小编为您介绍的“php如何返回json,xml,JSONP等格式的数据”的全面内容,想了解更多关于 php入门 内容,请继续关注编程基础学习网。