strtoupper()
함수는 문자열을 대문자로 변환합니다. strtoupper()
函数把字符串转换为大写。
strtolower()
函数把字符串转换为小写。
每个单词的首字母转换为大写: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()
strtolower()
함수는 문자열을 소문자로 변환합니다. 각 단어의 첫 글자를 대문자로 변환: ucwords()
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! ?>추천 온라인 학습 동영상: php 비디오 튜토리얼🎜🎜🎜첫 번째 단어의 첫 글자를 대문자로 변경:
ucfirst()
🎜rrreee🎜첫 번째 단어의 첫 글자를 소문자로 변경: lcfirst()🎜 rrreee🎜 추천 관련 기사 및 튜토리얼: 🎜php tutorial🎜🎜
위 내용은 PHP에서 문자를 대문자와 소문자로 강제 변환하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!