$str = "The quick brown fox jumps over the lazy dog."
$str2 = substr($str, 4); // "quick brown fox jumps over the lazy dog."
$str = substr($str, 1);
$str = "The quick brown fox jumps over the lazy dog."
$str2 = substr($str, 4); // "quick brown fox jumps over the lazy dog."
$str = '::f:o:';
$str = ltrim($str, ':');
var_dump($str); //=> 'f:o:'