<?php
echo substr('abcdef', 1); // bcdef
?>
$str = substr($str, 1);
$arr = [1,2,3,4];
array_shift($arr);
print_r($arr); // [2,3,4]
$str = "The quick brown fox jumps over the lazy dog."
$str2 = substr($str, 4); // "quick brown fox jumps over the lazy dog."
echo trim(strstr("How are you?"," ")); //are you?