📜  PHP | IntlChar toupper()函数

📅  最后修改于: 2022-05-13 01:56:44.736000             🧑  作者: Mango

PHP | IntlChar toupper()函数

IntlChar::toupper()函数是PHP中的一个内置函数,用于将字符转换为 Unicode字符大写。给定的字符改变为大写等效字符。如果该字符没有等价的大写字母,则返回相同的字符。

句法:

mixed IntlChar::toupper ( $codepoint )

参数:此函数接受一个强制的参数$codepoint 。整数$ codepoint 的值是(例如,0x2603 表示 U+2603 SNOWMAN),或编码为UTF-8字符串的字符(例如“\u{2603}”)。

返回值:此函数返回给定字符。如果给定字符没有大写映射字符,则返回字符本身。返回类型将为整数,除非代码点作为 UTF-8字符串传递,在这种情况下将返回一个字符串。

下面的程序说明了PHP中的IntlChar::toupper()函数:

方案一:


输出:
string(1) "A"
string(1) "A"
string(1) "1"
int(88)
int(73)

方案二:


输出:
int(65)
NULL
string(1) "^"
string(1) "A"
string(1) "A"
string(1) "1"

相关文章:

  • PHP | IntlChar::islower()函数
  • PHP | IntlChar::isupper()函数

参考: http: PHP。 PHP