在PHP可以使用:strtoupper()函數、strtolower()函數、ucfirst()函數、lcfirst() 函數對字串進行大小寫處理。下面這篇文章就來給大家具體介紹一下,希望對大家有幫助。
strtoupper()函數
strtoupper()函數可以將字串當作參數,然後把字串全部轉換為大寫,並傳回。
基本語法:
strtoupper(string)
範例:
<?php function toUpper($string){ return(strtoupper($string)); } $string="Hello world!"; echo (toUpper($string)); ?>
輸出:
##strtolower( )函數
strtolower()函數可以將字串當作參數,然後把字串全部轉換成小寫,並傳回。 基本語法:strtolower(string)範例:
<?php function toUpper($string){ return(strtolower($string)); } $string="JAVASCRIPT"; echo (toUpper($string)); ?>輸出:
##ucfirst( )函數ucfirst()函數可以將字串當作參數,然後把字串的首字母轉換為大寫,其他字元不變,並回傳。
基本語法:
ucfirst(string)
範例:
<?php function toUpper($string){ return(ucfirst($string)); } $string="hello world!"; echo (toUpper($string)); ?>
輸出:
#lcfirst( ) 函數lcfirst()函數可以將字串當作參數,然後把字串的首字母轉換成小寫,其他字元不變,並回傳。
基本語法:lcfirst(string)範例:
<?php function toUpper($string){ return(lcfirst($string)); } $string="PHP中文网!"; echo (toUpper($string)); ?>輸出:
以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。更多精彩內容大家可以追蹤php中文網相關教學欄位! ! !
以上是PHP如何對字串進行大小寫處理的詳細內容。更多資訊請關注PHP中文網其他相關文章!