Remove the brackets in json?

后端 未结 2 1808
执笔经年
执笔经年 2021-02-14 07:40

How can I get rid of the brackets below for json processing?

[{\"success\":true,\"filename\":\"bialding_and_rebialding_plymouth02.jpg\"},{\"success\":true,\"file         


        
2条回答
  •  面向向阳花
    2021-02-14 08:07

    str_replace(array('[', ']'), '', htmlspecialchars(json_encode($result), ENT_NOQUOTES)); ?

提交回复
热议问题