(PHP 7, PHP 8)
IntlChar::foldCase — 对代码点执行大小写折叠
$codepoint
, int $options
= IntlChar::FOLD_CASE_DEFAULT): int|string|null给定字符映射到其大小写折叠等效项;如果字符没有大小写折叠等效项,则返回字符本身。
codepoint
int 代码点值(例如,U+2603 SNOWMAN 的 0x2603
),或作为 UTF-8 string 编码的字符(例如,"\u{2603}"
)
options
IntlChar::FOLD_CASE_DEFAULT
(默认值)或 IntlChar::FOLD_CASE_EXCLUDE_SPECIAL_I
。
如果存在,则返回代码点的Simple_Case_Folding;否则,如果成功,则返回代码点本身,如果失败,则返回 null
。