(PHP 7, PHP 8)
IntlChar::totitle β Make Unicode character titlecase
The given character is mapped to its titlecase equivalent. If the character has no titlecase equivalent, the original character itself is returned.
Returns the Simple_Titlecase_Mapping of the code point, if any;
otherwise the code point itself. Returns null
on failure.
The return type is int unless the code point was passed as a UTF-8 string, in which case a string is returned. Returns null
on failure.
Example #1 Testing different code points
<?php
var_dump(IntlChar::totitle("Η"));
var_dump(IntlChar::totitle("Η"));
var_dump(IntlChar::totitle("Ξ¦"));
var_dump(IntlChar::totitle("Ο"));
var_dump(IntlChar::totitle("1"));
var_dump(IntlChar::totitle("αΎ³"));
var_dump(IntlChar::totitle(ord("A")));
?>
The above example will output:
string(1) "Η " string(1) "Η " string(2) "Ξ¦" string(2) "Ο" string(1) "1" string(1) "αΎΌ" int(65)