$str=\':this is a applepie :) \';
How to use PHP, Remove the first character :
:
To remove first Character of string in PHP,
$string = "abcdef"; $new_string = substr($string, 1); echo $new_string; Generates: "bcdef"