php stripcslashes function means dequoting a string escaped using addcslashes() . The syntax is stripcslashes(string). Parameter: string is required and specifies the string to be checked.
How to use the stripcslashes function?
Function: Remove the backslashes added by the addcslashes() function.
Syntax:
stripcslashes(string)
Parameters:
string Required, specifies the string to be checked.
Description: This function can be used to clean data retrieved from the database or from HTML forms.
php stripcslashes() function usage example 1:
<?php echo stripcslashes("Hello \World!"); ?>
Output:
Hello World!
php stripcslashes() function usage example 2:
<?php echo stripcslashes("i'm \study \in \php.cn"); ?>
Output:
i'm study in php.cn
This article is an introduction to the PHP stripcslashes function. I hope it will be helpful to friends in need!
The above is the detailed content of How to use php stripcslashes function. For more information, please follow other related articles on the PHP Chinese website!