如果只是限制不使用ucfirst的话还是比较简单的
$str = 'qwe asd';$str = strtoupper($str[0]) . substr($str,1);echo $str;
如果还有问题可以追问
希望可以帮到你