php如何去除字符串的第一个字符

<?php
$a = "About us";
$a = substr($a,1);
echo $a;
?>

猜你喜欢

转载自blog.csdn.net/qq_40270754/article/details/86541313