在PHP中,可以使用strtoupper()
和strtolower()
函數來實現字符串大小寫轉換。
strtoupper()
函數:將字符串中的所有字母轉換為大寫。$str = "Hello, World!";
$upperStr = strtoupper($str);
echo $upperStr; // 輸出:HELLO, WORLD!
strtolower()
函數:將字符串中的所有字母轉換為小寫。$str = "Hello, World!";
$lowerStr = strtolower($str);
echo $lowerStr; // 輸出:hello, world!
這兩個函數都可以實現字符串大小寫轉換的需求。