php將字串首字母轉換大寫字母的方法:先新建一個php範例檔;然後設定字串;最後透過ucfirst函數將一個字串中的第一個字母轉換成大寫即可。
php將字串首字母轉換大寫字母的方法:
php中可以透過ucfirst函數將一個字串中的第一個字母轉換成大寫,而ucwords函數可以將一個字串中每個單字的首字母轉換成大寫
<?php $string = "php string functions are easy to use."; $sentence = ucfirst($string); $title = ucwords($string); print("$sentence\n"); print("$title\n"); print("\n"); ?>
輸出結果如下:
Php string functions are easy to use. Php String Functions Are Easy To Use
#相關學習推薦:php程式設計(影片)
以上是php如何將字串首字母轉換大寫字母的詳細內容。更多資訊請關注PHP中文網其他相關文章!