Example of removing json backslash in php

Example of removing json backslash in php

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:
  • PHP removes the backslash \ in the json string and removes the backslash before the double quotes

<<:  calc() to achieve full screen background fixed width content

>>:  Web front-end development CSS related team collaboration

Recommend

Detailed explanation of count without filter conditions in MySQL

count(*) accomplish 1. MyISAM: Stores the total n...

Detailed steps for configuring virtual hosts in nginx

Virtual hosts use special software and hardware t...

js data types and their judgment method examples

js data types Basic data types: number, string, b...

A guide to writing flexible, stable, high-quality HTML and CSS code standards

The Golden Rule Always follow the same set of cod...

How to change the encoding to utf-8 in mysql version 5.7 under windows

Preface I just started learning MySQL and downloa...

Pay attention to the use of HTML tags in web page creation

HTML has attempted to move away from presentation...

Comparison between Redis and Memcache and how to choose

I've been using redis recently and I find it ...

HTML discount price calculation implementation principle and script code

Copy code The code is as follows: <!DOCTYPE HT...

How to install MySQL 8.0 in Docker

Environment: MacOS_Cetalina_10.15.1, Mysql8.0.18,...

JavaScript Basics Series: Functions and Methods

Table of contents 1. The difference between funct...

Detailed explanation of VueRouter routing

Table of contents vue router 1. Understand the co...

mysql 8.0.18 mgr installation and its switching function

1. System installation package yum -y install mak...

HTML embed tag usage and attributes detailed explanation

1. Basic grammar Copy code The code is as follows...

Steps for Vue to use Ref to get components across levels

Vue uses Ref to get component instances across le...