【摘要】 PHP即“超文本预处理器”,是一种通用开源脚本语言。PHP是在服务器端执行的脚本语言,与C语言类似,是常用的网站编程语言。PHP独特的语法混合了C、Java、Perl以及 PHP 自创的语法。下面是php怎么把字符串转换为大写,让我们一起来看看php怎么把字符串转换为大写的具体内容吧!
php怎么把字符串转换为大写
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怎么把字符串转换为大写的内容,对PHP感兴趣的小伙伴们可以关注考必过,获取更多PHP前沿资讯和最新技术。最新消息小编会第一时间发布,助力大家考试,加油!