[PHP json_encode转换空数组为对象]
问题描述:
php在给端提供接口,比如PC和安卓,ios等,如果返回json格式的数据,当返回数据的为数组,且key为字符串时,json化后将返回jsonObject,但是如果是空数组,有可能返回的就是jsonArray,数据结构不一致导致端解析json失败。
如:
$arr = [
'id' => 123.,
'name' => 'andrew',
];
$jsonRet = json_encode($arr);
print_r($jsonRet);
输出:
{
"id": 123,
"name": "andrew"
}
但是如果是:
$arr = \[\]; $jsonRet = json_encode($arr); print_r($jsonRet);
输出:
[]
如何在数组为空时也是JsonObject呢?
方法一:
使用JSON_FORCE_OBJECT
$arr = []; $jsonRet = json_encode($arr, JSON_FORCE_OBJECT); print_r($jsonRet);
此法有一弊端,eg:
$arr = \[
'jsonArray' => [
'21', '12', '13'
],
'jsonObject' => []
];
$jsonRet = json\_encode($arr,JSON\_FORCE_OBJECT);
print_r($jsonRet);
输出:
{
"jsonArray": {
"0": "21",
"1": "12",
"2": "13"
},
"jsonObject": {
}
}
原本jsonArray的也被jsonObject化了,局部的改变不能影响全局
方法二(推荐)
使用 ArrayObject
$arr = [
'jsonArray' => [
'21', '12', '13'
],
'jsonObject' => new \\ArrayObject()
];
$jsonRet = json_encode($arr);
print_r($jsonRet);
输出:
{
"jsonArray": [ "21", "12", "13" ],
"jsonObject": { }
}
注:PHP版本为7.2
搜索
标签
study
ab
amap
apache
apahe
awk
aws
bat
centos
CFS
chrome
cmd
cnpm
composer
consul
crontab
css
curl
cygwin
devops
di
docker
docker,docker-compose
ethereum
excel
fiddler
fluentd
framework
front-end
git
gitgui
github
glide
go
golang
gorm
grafana
gzip
ioc
item2
iterm2
javascript
jenkins
jsonp
kafka
laradock
laravel
larval
linux
liunux
log
mac
mac, wi-fi
macos
magento
mariaDB
minikube
mongoDB
msp
mysql
netbeans
nginx
nodejs
nohup
npm
nsq
oracle
php
php-fpm
php7
phpstorm
php扩展
Protobuf
python
redis
scp
server
shell
soap
socket
socket5
sql
sre
ssdb
ssh
ssl
study
sublime
swift
system
td-agent
uml
v2ray
vagrant
vagrnat
vim
vpn
vue
vue.js
webpack
webrtc
websocket
webtatic
windows
windows7
word
wps
xdebug
yarn
yii2
yum
zookeeper
世界国家
互联网
以太坊
分类
前端
小程序
打印机
排序算法
搞笑
权限
粤语
缓存
网络
虚拟机
视频
设计模式
项目管理
热门文章
友情链接