각 단어의 첫 글자를 대문자로 변환: ucwords()
ucwords()
<?php $foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; $bar = ucwords($bar); // HELLO WORLD! $bar = ucwords(strtolower($bar)); // Hello World! ?>
相关视频教程推荐:php视频教程
第一个单词首字母变大写:ucfirst()
<?php $foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world! ?>
第一个单词首字母变小写:lcfirst()
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! ?>
知识点补充:
所有字母变大写:strtoupper()
所有字母变小写:strtolower()
rrreee
첫 번째 단어의 첫 글자를 대문자로 변경: ucfirst()
lcfirst( )
🎜rrreee🎜추가 지식 포인트:🎜🎜모든 문자를 대문자로 변경: strtoupper()
🎜🎜모든 문자를 소문자로 변경: strtolower()
🎜🎜 관련 기사에 대한 추천 튜토리얼:🎜 PHP 튜토리얼🎜🎜위 내용은 PHP에서 문자열의 첫 글자를 대문자 또는 소문자로 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!