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()
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! ?>
相關文章教學推薦:php教學
以上是php中強製字母轉換大小寫的方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!