php如何返回json
、JSONP
、xml
等格式的数据,下面web建站小编带大家了解一下代码!
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语法对index.php首页进行判断(根据需要显示不同页面)
上面是“php如何返回json,xml,JSONP等格式的数据”的全面内容,想了解更多关于 php入门 内容,请继续关注web建站教程。
当前网址:https://m.ipkd.cn/webs_2490.html
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!