您现在的位置是:首页 > PHP函数

李清波 2015-10-01 PHP函数 2351 复制当前网址

strtoupper



PHP strtoupper() 函数

定义和用法

strtoupper() 函数把字符串转换为大写。


语法

strtoupper(string)


参数描述
string必需。规定要转换的字符串。


例子

<?php
echo strtoupper("Hello WORLD!");
?>

输出:

HELLO WORLD!


文章来源:http://liqingbo.com/blog-879.html

上一篇:strtr

下一篇:strtolower

评论