stripslashes() function is removes backslashes.
Syntax:
stripslashes(string)
string = Specifies the string to check
Example:string = Specifies the string to check
<?php
$string="Easy way\'s to learning php";
$stripslashes=stripslashes($string);
echo $stripslashes;
?>
$string="Easy way\'s to learning php";
$stripslashes=stripslashes($string);
echo $stripslashes;
?>
Result:
Easy way's to learning php


0 komentar:
Post a Comment