$str ='123456'; echo strlen($str) - 1; echo '<br>'; echo $str{strlen($str) - 1}; echo '<br>'; echo $str[strlen($str) - 1];以后处理即使很复杂的字符串,都可以很轻松的处理了