The substr() function will probably help you here:
substr()
<?php $str = 'We love Cricket'; $str = substr($str, 1); echo $str ; ?>