首頁  >  文章  >  後端開發  >  PHP英文字母大小寫轉換如何實現

PHP英文字母大小寫轉換如何實現

php中世界最好的语言
php中世界最好的语言原創
2018-05-21 11:36:124650瀏覽

這次帶給大家PHP英文字母大小寫轉換如何實現,PHP英文字母大小寫轉換實現的注意事項有哪些,下面就是實戰案例,一起來看一下。

例1,每個單字的首字母轉換為大寫:ucwords()

<?php
$foo = &#39;hello world!&#39;;
$foo = ucwords($foo);             // Hello World!
$bar = &#39;HELLO WORLD!&#39;;
$bar = ucwords($bar);             // HELLO WORLD!
$bar = ucwords(
strtolower
($bar)); // Hello World!
?>

範例2,第一個單字首字母變大寫: ucfirst()

<?php
$foo = &#39;hello world!&#39;;
$foo = ucfirst($foo);             // Hello world!
$bar = &#39;HELLO WORLD!&#39;;
$bar = ucfirst($bar);             // HELLO WORLD!
$bar = ucfirst(strtolower($bar)); // Hello world!
?>

範例3,第一個單字首字母變小寫:lcfirst()

<?php
$foo = &#39;HelloWorld&#39;;
$foo = lcfirst($foo);             // helloWorld
$bar = &#39;HELLO WORLD!&#39;;
$bar = lcfirst($bar);             // hELLO WORLD!
$bar = lcfirst(
strtoupper
($bar)); // hELLO WORLD!
?>

所有字母變大寫:strtoupper()
所有字母變小寫:strtolower()

以上共介紹了五個英文字母大小寫轉換函數的函數,分別為ucwords、ucfirst、lcfirst 、strtoupper、strtolower,各有所用。

相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!

推薦閱讀:

php判斷遠端圖片能否被呼叫

#PHP按行讀取檔案時刪除換行符操作詳解

以上是PHP英文字母大小寫轉換如何實現的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn