當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP strtoupper()用法及代碼示例


strtoupper()函數用於將字符串轉換為大寫。此函數將字符串作為參數,並將字符串中存在的所有小寫英文字母轉換為大寫。字符串中的所有其他數字字符或特殊字符保持不變。

用法

string strtoupper ( $string )

參數:此函數的唯一參數是要轉換為大寫字母的字符串。


返回值:此函數返回一個字符串,其中所有字母均為大寫。

例子:

Input : $str  = "GeeksForGeeks"
        strtoupper($str)
Output: GEEKSFORGEEKS

Input : $str  = "going BACK he SAW THIS 123$#%"
        strtoupper($str)
Output: GOING BACK HE SAW THIS 123$#%

以下示例程序旨在說明PHP中的strtoupper()函數:

程序1

<?php 
  
// original string 
$str = "GeeksForGeeks"; 
  
// string converted to upper case 
$resStr = strtoupper($str); 
  
print_r($resStr); 
  
?>

輸出:

GEEKSFORGEEKS

程序2

<?php 
  
// original string 
$str = "going BACK he SAW THIS 123$#%"; 
  
// string to upper case 
$resStr = strtoupper($str); 
  
print_r($resStr); 
  
?>

輸出:

GOING BACK HE SAW THIS 123$#%

參考:
http://php.net/manual/en/function.strtoupper.php



相關用法


注:本文由純淨天空篩選整理自HGaur大神的英文原創作品 PHP | strtoupper() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。