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

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

php中世界最好的语言
發布: 2023-03-27 08:22:01
原創
4690 人瀏覽過

這次帶給大家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中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板