實例
把 "Hello" 的首字轉換為小寫。 :
<?php echo lcfirst("Hello world!"); ?>
定義與用法
lcfirst() 函數把字串中的首字轉換成小寫。
相關函數:
ucfirst() - 把字串中的偏好設定為大寫。
ucwords() - 將字串中每個字的首字轉換為大寫。
strtoupper() - 把字串轉換為大寫。
strtolower() - 把字串轉換為小寫。
語法
lcfirst(string)
參數 說明
string 必要。規定要轉換的字串。
技術細節
傳回值: 傳回已轉換的字串。
PHP 版本: 5.3.0+
範例:
<?php $foo = 'HelloWorld'; $foo = lcfirst($foo); // helloWorld $bar = 'HELLO WORLD!'; $bar = lcfirst($bar); // hELLO WORLD! $bar = lcfirst(strtoupper($bar)); // hELLO WORLD! ?>
##
以上是php把字串中的首字元轉換為小寫函數lcfirst()的詳細內容。更多資訊請關注PHP中文網其他相關文章!