$str=\':this is a applepie :) \';
How to use PHP, Remove the first character :
:
Use substr:
$str = substr($str, 1); // this is a applepie :)