php json中 数据有"双引号怎么办?

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php json中 数据有"双引号怎么办?相关的知识,希望对你有一定的参考价值。

参考技术A 可以使用PHP addslashes() 函数转义一下\\x0d\\x0a\\x0d\\x0aaddslashes() 函数在指定的预定义字符前添加反斜杠。\\x0d\\x0a\\x0d\\x0a这些预定义字符是:\\x0d\\x0a\\x0d\\x0a单引号 (\')\\x0d\\x0a双引号 (")\\x0d\\x0a反斜杠 (\)\\x0d\\x0aNULL\\x0d\\x0a例如:\\x0d\\x0a\\x0d\\x0a";\\x0d\\x0aecho addslashes($str) . " This is safe in a database query.";\\x0d\\x0a?>\\x0d\\x0a\\x0d\\x0a输出:\\x0d\\x0aWho\'s John Adams? This is not safe in a database query.\\x0d\\x0aWho\\'s John Adams? This is safe in a database query.

以上是关于php json中 数据有"双引号怎么办?的主要内容,如果未能解决你的问题,请参考以下文章

php json中 数据有"双引号怎么办?

php中怎么把json双引号前加上转义符\

json_encode在编码字符串时会自动加上双引号,怎么能去掉?

如何在php中删除从json “x”:“y”到x:y的双引号[关闭]

php中 定义变量为字符串,但字符串中有引号,怎么办?

php用正则表达式怎么取双引号里面的内容??