|
IntlChar::enumCharTypesEnumerate all code points with their Unicode general categories Description
public static void IntlChar::enumCharTypes(callable
$callback )Enumerates efficiently all code points with their Unicode general categories. This is useful for building data structures, for enumerating all assigned code points, etc.
For each contiguous range of code points with a given general category ("character type"), the
Parameters
Return ValuesNo value is returned. ExamplesExample #1 Enumerating over a sample range of code points
The above example will output: U+0000 through U+0020 are in category 15 U+0020 through U+0021 are in category 12 U+0021 through U+0024 are in category 23 U+0024 through U+0025 are in category 25 U+0025 through U+0028 are in category 23 U+0028 through U+0029 are in category 20 U+0029 through U+002a are in category 21 U+002a through U+002b are in category 23 U+002b through U+002c are in category 24 U+002c through U+002d are in category 23 U+002d through U+002e are in category 19 U+002e through U+0030 are in category 23 U+0030 through U+003a are in category 9 ... |