Home  >  Article  >  Backend Development  >  How to escape strings in php

How to escape strings in php

WJ
WJOriginal
2020-06-01 15:27:253578browse

How to escape strings in php

First of all, can you briefly understand what an escape character is? 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 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, some sensitive characters will be escaped using escape characters (functions). 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:

'张三','age'=>19]";
echo $str . "
"; //对字符串进行转义 $a = addslashes($str); //输出转义后的字符串 echo $a . "
";

addslashes function: Use backslashes to quote strings.

The parameters represent 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 strings in php

Related references :php中文网

The above is the detailed content of How to escape strings in php. 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