string stripslashes ( string $str )
eg:
eg:
$stripped = 'this is a string with three\\\ slashes';
$stripped = stripslashes($stripped);
Output: 'this is a string with three\ slashes' Double stripslashes to completely remove 3 consecutive slashes