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

相關文章
- PHP If Else 語句
- PHP 文件處理
- PHP Cookie
- PHP array_chunk() 函數
- PHP array_count_values() 函數
- PHP array_diff_assoc() 函數
- PHP array_intersect() 函數
- PHP array_multisort() 函數
- PHP array_rand() 函數
- PHP array_replace() 函數
- PHP array_search() 函數
- PHP asort() 函數
- PHP end() 函數
- PHP next() 函數
- PHP pos() 函數
- PHP shuffle() 函數
- PHP uasort() 函數
- PHP usort() 函數
- PHP FTP 函數
- PHP HTTP 函數