php怎么将字母全部转换为大写
程序员文章站
2022-03-21 19:04:38
...
PHP中可以使用strtoupper()函数将字符串中所有字符转换为大写。
函数语法:
strtoupper(string)
string:必需。规定要转换的字符串。
示例:
<!DOCTYPE html> <html> <body> <?php echo strtoupper("Hello WORLD!"); ?> </body> </html>
效果如下:
以上就是php怎么将字母全部转换为大写的详细内容,更多请关注其它相关文章!