首頁 > 後端開發 > php教程 > php中強製字母轉換大小寫的方法有哪些

php中強製字母轉換大小寫的方法有哪些

王林
發布: 2023-04-07 21:24:01
原創
3643 人瀏覽過

php中強製字母轉換大小寫的方法有哪些

strtoupper() 函數把字串轉換為大寫。

strtolower() 函數把字串轉換為小寫。

每個單字的首字母轉換為大寫: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!
?>
登入後複製

線上學習影片推薦:php影片教學

第一個單字首字母變大寫: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!
?>
登入後複製

第一個單字首字母變小寫: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!
?>
登入後複製

相關文章教學推薦:php教學

以上是php中強製字母轉換大小寫的方法有哪些的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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