trim first 3 characters in php code example
Example 1: php pop off the first character of string
$str = substr($str, 1);
Example 2: php cut off first x characters
$str = "The quick brown fox jumps over the lazy dog."
$str2 = substr($str, 4); // "quick brown fox jumps over the lazy dog."