In the PHP language, the escape and reversal of string literals can be implemented using PHP's own function addslashes () function and the stripslashes () function. 1. The addslashes () function addslashes () function is used to add a backslash (\) to a string that is specified. The syntax format is as follows: Addslashes (string); Description: Returns a String that is preceded by a backslash in order for the database query statement to precede some characters. These characters are single quotes ('), double quotation marks ("), backslashes (\), and NUL (the NULL character). 2. The stripslashes () function stripslashes () function is used to add a backslash (\) to the Addcslashes () function. The syntax format is as follows: Stripslashes (string); Before we describe what PHP escapes and reverses literal string data, describes the escape character "\", and how to use the transfer character to go
1. Summary of PHP reverse semantic instance usage
Summary: In the PHP language, the escape and reversal of string literals can be implemented using PHP's own function addslashes () function and the stripslashes () function. 1. The addslashes () function addslashes () function is used to add a backslash (\) to a string that is specified. The syntax format is as follows: Addslashes (string); Description: Returns a String that is preceded by a backslash in order for the database query statement to precede some characters. These characters are single quotes (...).
2. About PHP stripslashes () functions 10 articles recommended
Summary: In PHP, the addslashes () function adds a backslash before some of the predefined characters in the input string, and the Stripslashes () function removes the backslash added by the addslashes () function. This article summarizes some of the usage summaries and examples of the addslashes () function and the stripslashes () function. 1.php addslashes () function and stripslashes () function Examples This article mainly introduces addslashes ...
3. Simple introduction of Htmlspecialchars, Strip_tags, addslashes functions in PHP
Introduction: In the development of web-based programs, Htmlspecialchars, Strip_tags, addslashes functions are the most common, this article will introduce the three functions respectively.
4. PHP addslashes () function and stripslashes () function Usage Summary
Summary: In PHP, the addslashes () function adds a backslash before some of the predefined characters in the input string, and the Stripslashes () function removes the backslash added by the addslashes () function. This article summarizes some of the usage summaries and examples of the addslashes () function and the stripslashes () function.
5. How to use PHP addslashes function Error Resolution
Summary: the addslashes () function in PHP is to add a backslash to some of the predefined characters in the input string, but if you find yourself using the PHP addslashes function to make an error, you need to check your code carefully. If you don't believe me, please look at the code below.
6. PHP using addslashes function to implement SQL anti-injection example
Summary: We know that the addslashes () function is to add a backslash before some of the predefined characters in the input string. So how does it relate to our anti-SQL injection? What is SQL injection? SQL injection attacks are the most common means by which hackers attack websites. If your site does not use strict user input validation, it is often vulnerable to SQL injection attacks. SQL injection attacks are typically implemented by submitting bad data or query statements to the site database, which is likely to expose, change, or delete records in the database. This article mainly introduces PHP addslashes function and SQL anti-injection, through the example of using addslashes function for SQL
7. Introduction to the use of the PHP GET_MAGIC_QUOTES_GPC () function
Introduction: Before explaining the difference between the PHP stripslashes () function and the addslashes () function, which refers to the GET_MAGIC_QUOTES_GPC () function, what does this function do? This chapter describes some of the GET_MAGIC_QUOTES_GPC () functions and their matters.
8. Examples of differences between the PHP stripslashes () function and the addslashes () function
Introduction: The Role of the addslashes () function and the stripslashes () function in PHP and some usage are described earlier in this article to explain the difference between the PHP stripslashes () function and the addslashes () function. They differ in terms of function names: strip (Peel) slashes (slash) Add (add) slashes (slash), so one of them is stripped slash one is added to add slash action is opposite.
9. Examples of PHP addslashes () functions and stripslashes () functions
Summary: Addslashes (): Adds a backslash to some of the predefined characters in the input string, which is required for database query statements, and so on. These predefined characters are: Single quotation mark ('), double quotation mark ("), backslash (\), NULL. Stripslashes (): Removes the backslash added by the addslashes () function. This function cleans up data retrieved from a database or HTML form. (if two consecutive backslashes, remove one, keep one; if there is only one backslash, remove it directly.) )
PHP Escape and inverse literal string functions
Summary: In PHP, the escape and reversal of string literals can also be implemented using the Addslashes () function and the stripslashes () function provided by PHP.
"Related question and answer recommendation":
About PHP processing CKEditor data sent over the problem
PHP-How do I fix the effect of magic_quotes_sybase configuration items on the Stripslashes method?
How can I put JSON-formatted data directly into MySQL database under PHP?
PHP-Seek mysql_real_escape_string () anti-injection
PHP-Why is the mysql_real_escape_string escape string emptied?