The php anti-escaping function is "stripslashes", and the stripslashes function is used to delete the backslash added by the addslashes function. Its syntax is "stripslashes(string)", and the parameter string represents the character to be checked. string.
stripslashes definition and usage
The stripslashes() function removes the backslashes added by the addslashes() function.
Tip: This function can be used to clean data retrieved from the database or from an HTML form.
Syntax
stripslashes(string)
Parameters
string Required. Specifies the string to check.
Return value: Returns the string with backslashes stripped.
Example:
Remove backslash:
<?php echo stripslashes("Who\'s Bill Gates?"); ?>
Related introduction:
Data escaping
mysql_escape_string($content)
Anti-escaping
stripslashes($content)
For more related knowledge, please visit PHP Chinese website !
The above is the detailed content of What is the php anti-escaping function?. For more information, please follow other related articles on the PHP Chinese website!