/webtrees/tests/app/Encodings/ |
H A D | UTF16BETest.php | 28 use function chr; alias 43 $char = chr(intdiv($code, 256)) . chr($code % 256); 51 $char = chr(intdiv($code, 256)) . chr($code % 256); 58 $char = chr(intdiv($code, 256)) . chr($code % 256); 66 $char = chr(intdiv($code, 256)) . chr($code % 256); 73 $char = chr(intdiv($code, 256)) . chr($code % 256);
|
H A D | UTF16LETest.php | 28 use function chr; alias 43 $char = chr($code % 256) . chr(intdiv($code, 256)); 51 $char = chr($code % 256) . chr(intdiv($code, 256)); 58 $char = chr($code % 256) . chr(intdiv($code, 256)); 66 $char = chr($code % 256) . chr(intdiv($code, 256)); 73 $char = chr($code % 256) . chr(intdiv($code, 256));
|
H A D | UTF8Test.php | 27 use function chr; alias 38 $char = chr($i); 48 $char = chr($i);
|
H A D | ASCIITest.php | 28 use function chr; alias 41 $character = chr($code_point); 49 $character = chr($code_point);
|
H A D | ISO88591Test.php | 28 use function chr; alias 48 $character = chr($code_point); 56 $character = chr($code_point);
|
H A D | ISO88592Test.php | 28 use function chr; alias 48 $character = chr($code_point); 56 $character = chr($code_point);
|
H A D | CP850Test.php | 28 use function chr; alias 40 $character = chr($code_point);
|
H A D | CP437Test.php | 28 use function chr; alias 42 $character = chr($code_point);
|
H A D | Windows1251Test.php | 28 use function chr; alias 42 $character = chr($code_point);
|
H A D | Windows1252Test.php | 28 use function chr; alias 42 $character = chr($code_point);
|
H A D | Windows1250Test.php | 28 use function chr; alias 42 $character = chr($code_point);
|
H A D | AnselTest.php | 143 $utf8 = UTF8::chr($code);
|
/webtrees/app/Encodings/ |
H A D | AbstractUTF16Encoding.php | 22 use function chr; alias 100 $utf8 .= chr($code_point); 106 $utf8 .= chr(0xC0 | ($code_point >> 6)); 107 $utf8 .= chr(0x80 | $code_point & 0x3F); 110 $utf8 .= chr(0xE0 | ($code_point >> 12)); 111 $utf8 .= chr(0x80 | ($code_point >> 6) & 0x3F); 112 $utf8 .= chr(0x80 | $code_point & 0x3F);
|
H A D | UTF8.php | 24 use function chr; alias 843 public static function chr(int $code): string function in Fisharebest\\Webtrees\\Encodings\\UTF8 850 return chr($code); 855 chr(($code >> 6) + 0xC0) . 856 chr(($code & 0x3F) + 0x80); 861 chr(($code >> 12) + 0xE0) . 862 chr((($code >> 6) & 0x3F) + 0x80) . 863 chr(($code & 0x3F) + 0x80); 867 chr(($code >> 18) + 0xF0) . 868 chr((($code >> 12) & 0x3F) + 0x80) . [all …]
|
H A D | UTF16BE.php | 22 use function chr; alias 61 return chr(intdiv($code_point, 256)) . chr($code_point % 256);
|
H A D | UTF16LE.php | 22 use function chr; alias 61 return chr($code_point % 256) . chr(intdiv($code_point, 256));
|
/webtrees/ |
H A D | composer.lock | 2513 "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
|
/webtrees/resources/lang/sk/ |
H A D | messages.po | 685 msgstr "<p>Poznámka: Vyplnením a odoslaním týchto údajov súhlasíte, že:</p><ul><li>budete chrániť s… 10404 msgstr "Bez chrámu - ordinácia zaživa" 21192 #~ msgstr "<p>Upozornenie: Vyplnením a odoslaním tohoto formulára súhlasíte, že:<ul><li>budete chrá…
|
/webtrees/resources/lang/cs/ |
H A D | messages.po | 10397 msgstr "Bez chrámu - obřad naživo" 22590 #~ msgstr "Ukládat na server obrázky v plné velikosti chráněné vodoznakem" 22593 #~ msgstr "Ukládat na server vodoznakem chráněné náhledy"
|