28 $outfile = $this->
getOption(
'outfile',
'upperchar.json' );
30 $titlecase = $this->
getOption(
'titlecase' );
31 for ( $i = 0; $i <= 0x10ffff; $i++ ) {
33 if ( $i >= 0xd800 && $i <= 0xdfff ) {
36 $char = UtfNormal\Utils::codepointToUtf8( $i );
38 $upper = mb_convert_case( $char, MB_CASE_TITLE );
40 $upper = mb_strtoupper( $char );
42 $toUpperTable[$char] = $upper;
44 file_put_contents( $outfile, json_encode( $toUpperTable ) );