php中怎麼將大寫字母轉換為小寫字母

2020-07-16 10:06:37

php中可以使用strtolower()函數將所有大寫字母轉換為小寫字母。

strtolower() 函數把字串轉換為小寫。

注釋:該函數是二進位制安全的。

語法:strtolower(string)

引數:string 必需。規定要轉換的字串。

範例:

<!DOCTYPE html>
<html>
<body>

<?php
echo strtolower("Hello WORLD.");
?>
  
</body>
</html>

執行結果如下:

1.jpg

更多PHP相關教學請關注TW511.COM

以上就是php中怎麼將大寫字母轉換為小寫字母的詳細內容,更多請關注TW511.COM其它相關文章!