Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我不仅需要大写字符串中的第一个字母,还需要大写第 5 个字母。
您将如何正确大写字符串“RoadAtlanta”?
您可以通过索引引用字符:
$string[4] = strtoupper($string[4]);
在这种特殊情况下,4 指的是第 5 个字符。字符串字符从 0 开始索引为数组,因此您可以直接引用特定位置的字符。