The stripcslashes() function is used to remove backslashes, added with addcslashes() function.
stripcslashes ( string $string ) : string
| Parameter Name | Descrption | 
|---|---|
| $string | Required, The string to be unescaped | 
Returns the unescaped string
echo stripcslashes("Test \String");
//Test String
Related Functions