当前位置:Gxlcms > PHP教程 > php怎么把字符串转换为大写

php怎么把字符串转换为大写

时间:2021-07-01 10:21:17 帮助过:32人阅读

php把字符串转换为大写的方法:可以利用内置函数strtoupper()来进行转换。strtoupper()函数可以把指定的字符串转换为大写,并返回被转换为大写的字符串。

使用函数:

(学习视频推荐:php视频教程)

strtoupper() 函数把字符串转换为大写,并返回转换为大写的字符串。

语法:

strtoupper(string)

(相关推荐:php培训)

代码实现:

<?php
$string = "Learn PHP string functions at phpcn";
$lower = strtolower($string);
$upper = strtoupper($string);
print("$lower\n");
print("$upper\n");
print("\n");
?>

输出结果:

learn php string functions at phpcn
LEARN PHP STRING FUNCTIONS AT PHPCN

以上就是php怎么把字符串转换为大写的详细内容,更多请关注gxlcms其它相关文章!

人气教程排行