$str = "My name is O\'Billa?";
echo stripslashes($str);// Outputs: My name is O'Billa?
$str = "My name is O'Billa?";
echo stripslashes($str);// Outputs: My name is O\'Billa?
$str = "Vijay's next film Villu";
$str = strtoupper($str);
echo $str; // Prints VIJAY'S NEXT FILM VILLU
$str = "AJITH'S NEXT FILM AEGAN";
$str = strtoupper($str);
echo $str; // Prints ajith's next film aegan
No comments:
Post a Comment