Skip to content

Instantly share code, notes, and snippets.

@alexlcdee
Created October 6, 2017 10:41
Show Gist options
  • Save alexlcdee/c97a98ad0ffe6c71b7dcf072e4da92b5 to your computer and use it in GitHub Desktop.
Save alexlcdee/c97a98ad0ffe6c71b7dcf072e4da92b5 to your computer and use it in GitHub Desktop.
Алфавит
$abc = array();
foreach (range(chr(0xC0), chr(0xDF)) as $b) {
$abc[] = iconv('CP1251', 'UTF-8', $b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment