here you can easily remove character from a string using php. below given example,
Syntex :
Example :
Syntex :
substr('string here', 'character length for remove');
Example :
$str = "easyscript demo."
$str2 = substr($str, 4);
Output :
script demo.
0 comments:
Post a Comment