.

Monday, October 24, 2011

Home » » PHP code - stripslashes

PHP code - stripslashes

stripslashes() function is  removes backslashes.



Syntax:
stripslashes(string)

string = Specifies the string to check
Example:
<?php
$string="Easy way\'s to learning php";
$stripslashes=stripslashes($string);

echo $stripslashes;
?>

Result:
Easy way's to learning php

0 komentar:

Post a Comment