Home  >  Article  >  Backend Development  >  What to do if php slash automatically escapes

What to do if php slash automatically escapes

藏色散人
藏色散人Original
2021-12-06 10:09:092841browse

php斜杠自动转义的解决办法:1、通过str_replace正则替换;2、使用“json_encode($a,JSON_UNESCAPED_SLASHES)”语句。

What to do if php slash automatically escapes

本文操作环境:Windows7系统、PHP7.4版、DELL G3电脑

php斜杠自动转义怎么办?

PHP中让json_encode不自动转义斜杠“/”的方法

最近将使用爬虫爬取的链接保存到 mysql 数据库中时,发现我将链接使用 json_encode 保存时候,在数据库中却显示了转义字符,我并不需要这转义的,看起来不清晰而且占用存储空间。

后来发现在默认的情况之下使用 json_encode 对数组进行 json 格式的转换时候会自动的将数据中含有斜杠的字符串进行转义,但是我们往往有的时候不需要药对它们进行转义的,本文说说如何使用 json_encode 不自动转义斜杠。

对于如下数组 $a,现有两种办法解决:

$a = array(
 'http://www.baidu.com',
 'http://www.baidu.com',
 'http://www.baidu.com',
 'http://www.baidu.com',
 'http://www.baidu.com'
);

其一,正则替换:

$a = str_replace("\\/", "/", json_encode($a));
var_dump($a);

其二,若 php 版本是 5.4 及以上的话:

var_dump(json_encode($a,JSON_UNESCAPED_SLASHES));

推荐学习:《PHP视频教程

The above is the detailed content of What to do if php slash automatically escapes. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn