The stripslashes() function used for remove backslashes added by addslashes().
This is opposite of addslashes().
Syntax
stripslashes(string)
Example
echo stripslashes('Hello Brother\'s');
Output
Hello Brother's
Copyright ©2022 coderraj.com. All Rights Reserved.