這篇文章主要介紹了幾個PHP英文字母大小寫轉換函數,現在分享給大家,需要的朋友可以參考下
每個單字的首字母轉換為大寫:ucwords()
複製程式碼 程式碼如下:
<?php $foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; $bar = ucwords($bar); // HELLO WORLD! $bar = ucwords(strtolower($bar)); // Hello World! ?>
第一個單字首字母變成大寫: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()
########################################################################################### ##########
以上是PHP英文字母大小寫的轉換函數的詳細內容。更多資訊請關注PHP中文網其他相關文章!