what is the syntax if the STRIPCSLASHES() function in php?
stripcslashes(string)
Parameter | Description |
---|---|
string | Required. Specifies the string to check |
examples of the STRIPCSLASHES() function
Example 1. In this example, we remove the backslash in front of “World!”.
<?php
echo stripcslashes("Hello \World!");
?>