我有json包含空值。我仍然想捕获那些空值但是当我使用json_decode时,空值在数组中变为空。有没有办法在使用json_decode之后保留空值或将空值更改为非空值?
[2] => Array (
[id] => 51136
[key] => 18
[fields] => Array (
[ticket] =>
)
在这个数组中我想改变#34; ticket"除了空白之外的其他内容,或者如果在使用json_decode时保留原始空值也可以。
原始json数据:
"id": "51136",
"key": "18",
"fields": {
"ticket": null,
}
谢谢!
答案 0 :(得分:0)
将空值更改为空以外的值?
您可以使用array_walk_recursive
进行此操作..
array_walk_recursive($yourarray, function (& $item, $key) {if (is_null($item)) { $item = "N/A"; }});
回调函数会检查数组中的NULL
值,如果找到则替换为N/A