需要从json编码结果中的某些字符串中转义双引号
示例:
$test= 'loreum';
$id=1;
if($test!=''){
$test='null';
}
$ response = array('id'=> $ id,'name'=> $ test);
示例输出
{
"id": "1",
"name": "null",
}
我需要这样的输出
{
"id": "1",
"name": null,
}
感谢先生人
答案 0 :(得分:0)
你可以
if($test!=''){
$test=null; //notice the missing quotes here
}