php怎么将字母全部转换为大写

来自:互联网
时间:2020-04-28
阅读:

PHP中可以使用strtoupper()函数将字符串中所有字符转换为大写。

函数语法:

strtoupper(string)

string:必需。规定要转换的字符串。

示例:

<!DOCTYPE html>
<html>
<body>
<?php
echo strtoupper("Hello WORLD!");
?> 
 
</body>
</html>

效果如下:

HELLO WORLD!

返回顶部
顶部