Home > php教程 > php手册 > body text

php的json_encode函数问题

WBOY
Release: 2016-07-06 13:30:49
Original
1234 people have browsed it

php的json_encode函数问题: $ary = []; $ary[0] = 'a'; $ary[1] = 'b'; echo json_encode($ary) . 'br'; echo json_encode($ary, JSON_FORCE_OBJECT); 结果: ["a","b"] {"0":"a","1":"b"}

php的json_encode函数问题:

$ary = [];
$ary[0] = 'a';
$ary[1] = 'b';
echo json_encode($ary) . '
';
echo json_encode($ary, JSON_FORCE_OBJECT);

结果:

["a","b"]
{"0":"a","1":"b"}


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!