strtoupper - 语法

string strtoupper ( string $string )

它用来制作字符串大写

Sr.No 参数 & Description
1

string

它指定输入字符串

strtoupper - 返回值

它返回字符串大写

strtoupper - 示例

<?php
   echo strtoupper("tutorials point.");
?>

这将产生以下输出-

TUTORIALS POINT.

参考链接

https://www.learnfk.com/php/php-function-strtoupper.html