PHP去掉json字符串中的反斜杠"\"
时间:2024年01月11日
/来源:网络
/编辑:佚名
PHP去掉json字符串中的反斜杠\两种方法
1、通过php函数stripslashes去掉反斜杠\
通过AJAX传到PHP的json字符串有时候加上反斜杠”\”来转义,PHP处理时需要先去掉反斜杠,然后再json_decode。
$str = stripslashes($_POST['json']);
$arr = json_decode($str,true);
2、通过替换函数str_replace去掉反斜杠\
$arr=['status'=>true,'msg'=>"\u8bbf\u95ee\u6b63\u5e38"];
$str=json_encode($arr);
echo str_replace("\\\\", "\\", $str);
1、通过php函数stripslashes去掉反斜杠\
通过AJAX传到PHP的json字符串有时候加上反斜杠”\”来转义,PHP处理时需要先去掉反斜杠,然后再json_decode。
$str = stripslashes($_POST['json']);
$arr = json_decode($str,true);
2、通过替换函数str_replace去掉反斜杠\
$arr=['status'=>true,'msg'=>"\u8bbf\u95ee\u6b63\u5e38"];
$str=json_encode($arr);
echo str_replace("\\\\", "\\", $str);
新闻资讯 更多
- 【建站知识】查询nginx日志状态码大于400的请求并打印整行04-03
- 【建站知识】Python中的logger和handler到底是个什么?04-03
- 【建站知识】python3拉勾网爬虫之(您操作太频繁,请稍后访问)04-03
- 【建站知识】xpath 获取meta里的keywords及description的方法04-03
- 【建站知识】python向上取整以50为界04-03
- 【建站知识】scrapy xpath遇见乱码解决04-03
- 【建站知识】scrapy爬取后中文乱码,解决word转为html 时cp1252编码问题04-03
- 【建站知识】scrapy采集—爬取中文乱码,gb2312转为utf-804-03