php中可以通過ucfirst函式將乙個字串中的第乙個字母轉換成大寫,而ucwords函式可以將乙個字串中每個單詞的首字母轉換成大寫
<?php $string = "php string functions are easy to use.";
$sentence = ucfirst($string);
$title = ucwords($string);
print("$sentence\n");
pri程式設計客棧nt("$title\")
print("\n");
?>
輸出結果如下:
php string functions are easy to use.
php string functionspzxsu are easy to use
本文標題: php實現字串首字母轉換成大寫的方法
本文位址:
根據漢字的首字母轉換成拼音 oracle
建立函式 create function fun getpy str nvarchar 4000 returns nvarchar 4000 as begin declare word nchar 1 py nvarchar 4000 set py while len str 0 begin set...
php把數字轉換成大寫金額格式字串
適用於10萬以內的金額 function rmb upper num print r arr left output array 0 1 1 2 2 3 3 4 4 5 for i 0 i len right i print r arr right output array 0 6 1 7 構造陣列...
sqlserver取字串拼音首字母
sqlserver 使用函式獲取乙個字串的拼音首字母 create function dbo.fn getpinyin str nvarchar max returns nvarchar max as begin declare word nchar 1 py nvarchar max set py...