這次帶給大家PHP英文字母大小寫轉換如何實現,PHP英文字母大小寫轉換實現的注意事項有哪些,下面就是實戰案例,一起來看一下。
例1,每個單字的首字母轉換為大寫:ucwords()
<?php $foo = 'hello world!'; $foo = ucwords($foo); // Hello World! $bar = 'HELLO WORLD!'; $bar = ucwords($bar); // HELLO WORLD! $bar = ucwords( strtolower ($bar)); // Hello World! ?>
範例2,第一個單字首字母變大寫: ucfirst()
<?php $foo = 'hello world!'; $foo = ucfirst($foo); // Hello world! $bar = 'HELLO WORLD!'; $bar = ucfirst($bar); // HELLO WORLD! $bar = ucfirst(strtolower($bar)); // Hello world! ?>
範例3,第一個單字首字母變小寫:lcfirst()
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst( strtoupper ($bar)); // hELLO WORLD! ?>
所有字母變大寫:strtoupper()
所有字母變小寫:strtolower()
以上共介紹了五個英文字母大小寫轉換函數的函數,分別為ucwords、ucfirst、lcfirst 、strtoupper、strtolower,各有所用。
相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是PHP英文字母大小寫轉換如何實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!