Home  >  Article  >  Daily Programming  >  How to escape and restore strings in PHP? (Pictures + Videos)

How to escape and restore strings in PHP? (Pictures + Videos)

藏色散人
藏色散人Original
2018-10-10 13:56:255413browse

This article mainly introduces to you the specific method of PHP escaping and restoring string data.

First of all, everyone can briefly understand what is the escape character? What is the use?

The escape character is a special character constant. The escape character starts with a backslash "\" and is followed by one or more characters. Escape characters have specific meanings that are different from the original meaning of the characters, so they are called "escape" characters.

Uses of escape characters:

1: Convert ordinary characters to special uses, such as the back key, enter key, etc.

2: Used to convert special meaning characters back to their original meaning.

3: Before data is written to the database, escape characters (functions) will be used to escape some sensitive characters. Avoid website injection attacks.

Then during the PHP development project, we may encounter operations that require escaping a large amount of data.

Below we will introduce how to escape and restore strings in PHP through simple code examples.

1. Examples of using functions to escape strings:

<?php
$str = "[&#39;name&#39;=>&#39;张三&#39;,&#39;age&#39;=>19]";
echo $str . "<br>";
//对字符串进行转义
$a = addslashes($str);
//输出转义后的字符串
echo $a . "<br>";

addslashes function: Use backslashes to quote strings.

The parameter represents the character data to be escaped. The return value is the escaped character.

In the above code, we define an array variable $str and use double single quotes to express it, and then use the addslashes function in PHP to escape. We need to note here that we cannot use four double quotes, because then the system will not be able to parse the beginning and end of the string, and an error will occur.

Then access it through the browser, and the result of escaping the string data is as shown below:

How to escape and restore strings in PHP? (Pictures + Videos)

2. Use of the function to restore the string Example:

<?php
$str = "[&#39;name&#39;=>&#39;张三&#39;,&#39;age&#39;=>19]";
echo $str . "<br>";
//对字符串进行转义
$a = addslashes($str);
//输出转义后的字符串
echo $a . "<br>";
//对转义后的字符串进行还原
$b = stripslashes($a);
//输出还原后的字符串
echo $b . "
";

stripslashes function: Dequote a quoted string.

The return value is a string without escaped backslashes (\' is converted to ', etc.). Double backslashes (\\) are converted to single backslashes (\).

Here we mainly use the stripslashes function to restore the escaped string.

The result of accessing through the browser is as follows:

How to escape and restore strings in PHP? (Pictures + Videos)

This article is about the specific method of PHP escaping and restoring string data. I hope Help those in need!

If you want to know more about PHP knowledge points, you can follow the PHP Chinese website PHP Video Tutorial, you are welcome to refer to and learn!

The above is the detailed content of How to escape and restore strings in PHP? (Pictures + Videos). 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