1. Remove backslashes through the "stripslashes($_POST['json']);" method. 2. Use "json_decode" to decode the string in JSON format. The json string passed to PHP via AJAX is sometimes escaped with a backslash "\". When processing it in PHP, you need to remove the backslash first and then json_decode it. $str = stripslashes($_POST['json']);$arr = json_decode($str,true); stripslashes() function: Removes backslashes added by the addslashes() function. json_decode: Decodes a string in JSON format. Knowledge point expansion: How to prevent json_encode from automatically escaping slashes "/" in PHP Recently, when I saved the links crawled by the crawler into the mysql database, I found that when I saved the links using json_encode, the escape characters were displayed in the database. I don’t need this escape, it looks unclear and takes up storage space. Later, I found that under the default circumstances, when using json_encode to convert the array to json format, the strings containing slashes in the data will be automatically escaped, but sometimes we don't need to escape them. This article explains how to use json_encode without automatically escaping slashes. For the following array $a, there are two solutions: $a = array( '//www.jb51.net, '//www.jb51.net, '//www.jb51.net, '//www.jb51.net, '//www.jb51.net ); First, regular replacement: $a = str_replace("\\/", "/", json_encode($a)); var_dump($a); Second, if the PHP version is 5.4 and above: var_dump(json_encode($a,JSON_UNESCAPED_SLASHES)); This is the end of this article about the example of how to remove backslashes in json in php. For more information about how to remove backslashes in json in php, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: calc() to achieve full screen background fixed width content
>>: Web front-end development CSS related team collaboration
count(*) accomplish 1. MyISAM: Stores the total n...
Virtual hosts use special software and hardware t...
js data types Basic data types: number, string, b...
The Golden Rule Always follow the same set of cod...
Preface I just started learning MySQL and downloa...
HTML has attempted to move away from presentation...
I've been using redis recently and I find it ...
Copy code The code is as follows: <!DOCTYPE HT...
Environment: MacOS_Cetalina_10.15.1, Mysql8.0.18,...
1. Achieve results 2. Data format returned by the...
Table of contents 1. The difference between funct...
Table of contents vue router 1. Understand the co...
1. System installation package yum -y install mak...
1. Basic grammar Copy code The code is as follows...
Vue uses Ref to get component instances across le...