php去掉字符串的第一个字符

例如:
$a = "About us";
处理完后变成
"bout us";
$a 不是固定的
先只考虑英文就好

http://www.w3school.com.cn/php/func_string_substr.asp

 $a = "About us";
$a=substr($a,1);
echo $a;

$str = "About us";
$str = substr_replace($str,"",0,1);
echo $str;

http://www.w3school.com.cn/php/php_ref_string.asp

$str = "About us";
$str[0] = '';

substr_replace可以,或者绕绕远用正则表达式也可以。