PHP ucwords() 函數(shù)
PHP ucwords() 函數(shù)
定義和用法
ucwords() 函數(shù)把字符串中每個(gè)單詞的首字符轉(zhuǎn)換為大寫。
注釋:該函數(shù)是二進(jìn)制安全的。
相關(guān)函數(shù):
- ucfirst() - 把字符串中的首字符轉(zhuǎn)換為大寫
- lcfirst() - 把字符串中的首字符轉(zhuǎn)換為小寫
- strtoupper() - 把字符串轉(zhuǎn)換為大寫
- strtolower() - 把字符串轉(zhuǎn)換為小寫
語法
ucwords(string)
參數(shù) | 描述 |
---|---|
string | 必需。規(guī)定要轉(zhuǎn)換的字符串。 |
技術(shù)細(xì)節(jié)
返回值: | 返回已轉(zhuǎn)換的字符串。 |
---|---|
PHP 版本: | 4+ |

相關(guān)文章
- PHP 變量
- PHP echo 和 print 語句
- PHP EOF(heredoc) 使用說明
- PHP 數(shù)據(jù)類型
- PHP If Else 語句
- PHP 文件處理
- PHP 文件上傳
- PHP array_column() 函數(shù)
- PHP array_combine() 函數(shù)
- PHP array_merge_recursive() 函數(shù)
- PHP array_push() 函數(shù)
- PHP array_reduce() 函數(shù)
- PHP array_slice() 函數(shù)
- PHP array_sum() 函數(shù)
- PHP array_uintersect_uassoc() 函數(shù)
- PHP arsort() 函數(shù)
- PHP asort() 函數(shù)
- PHP extract() 函數(shù)
- PHP sizeof() 函數(shù)
- PHP 5 Date/Time 函數(shù)