php 字符串小写怎么转大写
3种方法:1、用strtoupper()将字符串中的字符都转化为大写,语法“strtoupper($str)”;2、用mb_strtoupper()进行转换,语法“mb_strtoupper($str,"UTF-8")”;3、用mb_convert_case()进行转换,语法“mb_convert_case($str,MB_CASE_UPPER,"UTF-8");”。
本教程操作环境:windows7系统、PHP8.1版、DELL G3电脑
PHP中将字符串小写转换为大写的函数共有三个,分别是:
-
strtoupper
将字符串中的字符都转化为大写(PHP 4, PHP 5, PHP 7, PHP 8) -
mb_strtoupper
将字符串中的字符都转化为大写(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8) -
mb_convert_case
按照不同的模式对字符串进行转换(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)
下面详细讲解这三个函数及其用法。
1、strtoupper
strtoupper(string $string): string
登录后复制