您好,登錄后才能下訂單哦!
本篇內(nèi)容主要講解“php怎么返回json”,感興趣的朋友不妨來(lái)看看。本文介紹的方法操作簡(jiǎn)單快捷,實(shí)用性強(qiáng)。下面就讓小編來(lái)帶大家學(xué)習(xí)“php怎么返回json”吧!
php返回json的方法:1、在php文件中設(shè)置“header('Content-Type:application/json; charset=utf-8');”;2、創(chuàng)建“array('a'=>1,'b'=>2);”;3、通過(guò)“exit(json_encode($data));”返回json數(shù)據(jù)即可。
本教程操作環(huán)境:windows7系統(tǒng)、PHP8.1版、DELL G3電腦
PHP如何返回json數(shù)據(jù)?
php返回json,xml,JSONP等格式的數(shù)據(jù)
1、返回json數(shù)據(jù):
header('Content-Type:application/json; charset=utf-8');
$arr = array('a'=>1,'b'=>2);
exit(json_encode($data));
注意:如果不加header直接輸出json_encode的值的話(huà),返回的是字符串不是對(duì)象,js那邊就需要先eval('('+data+')')轉(zhuǎn)化為對(duì)象,再取值。
2、返回xml數(shù)據(jù):
header('Content-Type:text/xml; charset=utf-8');
exit($xml);
3、返回jsonp數(shù)據(jù):
$arr = array('a'=>1, 'b'=>2, 'c'=>3);
$json = json_encode($arr);
$callback = $_GET['callback'];
exit($callback."($json)");
// 注意callback是js傳過(guò)來(lái)的參數(shù)名稱(chēng)
thinkphp如何返回各種數(shù)據(jù):
$this->ajaxReturn (json_encode($arr),'JSON');
$this->ajaxReturn (json_encode($arr),'JSONP');
$this->ajaxReturn (json_encode($arr),'XML');
json_encode有個(gè)參數(shù)禁止unicode編碼
JSON_UNESCAPED_UNICODE
json_encode('中文',JSON_UNESCAPED_UNICODE);
默認(rèn)中文編碼
header('Content-Type:application/json; charset=gbk');
$data = $db->select($sql);
$data = json_encode($data);
$data=preg_replace("#\\\u([0-9a-f]{4})#ie", "iconv('UCS-2BE', 'gbk', pack('H4', '\\1'))", $data);
exit($data);
長(zhǎng)度用count()
$sjson = json_decode($res);
for($i=0;$i<count($sjson);$i++)
{
echo $sjson[$i];
}
到此,相信大家對(duì)“php怎么返回json”有了更深的了解,不妨來(lái)實(shí)際操作一番吧!這里是億速云網(wǎng)站,更多相關(guān)內(nèi)容可以進(jìn)入相關(guān)頻道進(jìn)行查詢(xún),關(guān)注我們,繼續(xù)學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀(guān)點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。