首页 > 代码库 > strtoupper() 函数

strtoupper() 函数

定义和用法

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

语法

strtoupper(string)

参数解析

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

示例

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

输出

HELLO WORLD!


本文出自 “素颜” 博客,请务必保留此出处http://suyanzhu.blog.51cto.com/8050189/1896254

strtoupper() 函数