what is the syntax if the STRIPSLASHES() function in php?
stripslashes(string)
Parameter | Description |
---|---|
string | Required. Specifies the string to check |
examples of the STRIPSLASHES() function
Example 1. In this example, we remove the backslash.
<?php
echo stripslashes("Who\'s Peter Griffin?");
?>