/PHP-8.0/ext/standard/tests/file/ |
H A D | bug72330.phpt | 5 …LL, "en_US.utf8", "en_AU.utf8", "ko_KR.utf8", "zh_CN.utf8", "de_DE.utf8", "es_EC.utf8", "fr_FR.utf… 11 …LL, "en_US.utf8", "en_AU.utf8", "ko_KR.utf8", "zh_CN.utf8", "de_DE.utf8", "es_EC.utf8", "fr_FR.utf…
|
/PHP-8.0/ext/standard/tests/strings/ |
H A D | setlocale_basic3.phpt | 8 if (setlocale(LC_ALL, "en_US.utf8", "Ko_KR.utf8", "zh_CN.utf8") === false) { 9 die('skip en_US.utf8/Ko_KR.utf8/zh_CN.utf8 locales not available'); 42 "en_US.utf8" => "USD", 43 "en_AU.utf8" => "AUD", 44 "ko_KR.utf8" => "KRW", 45 "zh_CN.utf8" => "CNY", 46 "de_DE.utf8" => "EUR", 51 "nl_NL.utf8" =>"EUR" 61 …cale() by giving 'category' as LC_ALL & multiple locales(en_US.utf8, Ko_KR.utf8, zh_CN.utf8) --\n"; 64 $new_locale = setlocale(LC_ALL, "en_US.utf8", "Ko_KR.utf8", "zh_CN.utf8"); [all …]
|
H A D | setlocale_basic1.phpt | 8 …LL, "en_US.utf8", "en_AU.utf8", "ko_KR.utf8", "zh_CN.utf8", "de_DE.utf8", "es_EC.utf8", "fr_FR.utf… 55 "en_US.utf8" => "USD", 56 "en_AU.utf8" => "AUD", 57 "ko_KR.utf8" => "KRW", 58 "zh_CN.utf8" => "CNY", 59 "de_DE.utf8" => "EUR", 60 "es_EC.utf8" => "USD", 61 "fr_FR.utf8" => "EUR", 62 "ja_JP.utf8" => "JPY", 63 "el_GR.utf8" => "EUR", [all …]
|
H A D | setlocale_variation1.phpt | 8 if (setlocale(LC_ALL, "en_US.utf8", "Ko_KR.utf8", "zh_CN.utf8") === false) { 9 die('skip en_US.utf8/Ko_KR.utf8/zh_CN.utf8 locales not available'); 41 "en_US.utf8" => "USD", 42 "en_AU.utf8" => "AUD", 43 "ko_KR.utf8" => "KRW", 44 "zh_CN.utf8" => "CNY", 45 "de_DE.utf8" => "EUR", 46 "es_EC.utf8" => "USD", 47 "fr_FR.utf8" => "EUR", 50 "nl_NL.utf8" =>"EUR" [all …]
|
H A D | setlocale_basic2.phpt | 8 …LL, "en_US.utf8", "en_AU.utf8", "ko_KR.utf8", "zh_CN.utf8", "de_DE.utf8", "es_EC.utf8", "fr_FR.utf… 56 "en_US.utf8" => "USD", 57 "en_AU.utf8" => "AUD", 58 "ko_KR.utf8" => "KRW", 59 "zh_CN.utf8" => "CNY", 60 "de_DE.utf8" => "EUR", 61 "es_EC.utf8" => "USD", 62 "fr_FR.utf8" => "EUR", 63 "ja_JP.utf8" => "JPY", 64 "el_GR.utf8" => "EUR", [all …]
|
H A D | printf_h_H.phpt | 5 if (!setlocale(LC_ALL, "de_DE.utf8")) die("skip de_DE.utf8 locale not available"); 10 setlocale(LC_ALL, "de_DE.utf8");
|
H A D | setlocale_variation5.phpt | 8 if (setlocale(LC_ALL,'en_AU.utf8') === false || setlocale(LC_ALL,'en_US.utf8') === false) { 9 die('skip en_AU.utf8/en_US.utf8 locales not available'); 13 LC_ALL=en_US.utf8; 21 setlocale(LC_ALL,'en_AU.utf8');
|
H A D | setlocale_variation4.phpt | 8 if (setlocale(LC_ALL,'en_US.utf8') === false || setlocale(LC_ALL,'en_AU.utf8') === false) { 9 die('skip en_US.utf8/en_AU.utf8 locales not available'); 13 LC_ALL=en_US.utf8; 21 setlocale(LC_ALL,"en_AU.utf8");
|
H A D | setlocale_variation3.phpt | 8 if (setlocale(LC_ALL,'en_US.utf8') === false) { 9 die('skip en_US.utf8 locale not available'); 21 setlocale(LC_ALL,"en_US.utf8");
|
/PHP-8.0/ext/mbstring/tests/ |
H A D | mb_strcut.phpt | 22 $utf8 = pack('H*', 'e288ae2045e28b856461203d2051'); // has 2 multi-byte characters: [e288ae 20 4… 38 print MBStringChars(mb_strcut($utf8, 0, 0, 'UTF-8'), 'UTF-8') . "\n"; 39 print MBStringChars(mb_strcut($utf8, 0, 1, 'UTF-8'), 'UTF-8') . "\n"; 40 print MBStringChars(mb_strcut($utf8, 0, 2, 'UTF-8'), 'UTF-8') . "\n"; 41 print MBStringChars(mb_strcut($utf8, 0, 3, 'UTF-8'), 'UTF-8') . "\n"; 42 print MBStringChars(mb_strcut($utf8, 0, 4, 'UTF-8'), 'UTF-8') . "\n"; 43 print MBStringChars(mb_strcut($utf8, 0, 5, 'UTF-8'), 'UTF-8') . "\n"; 44 print MBStringChars(mb_strcut($utf8, 1, 2, 'UTF-8'), 'UTF-8') . "\n"; 45 print MBStringChars(mb_strcut($utf8, 1, 3, 'UTF-8'), 'UTF-8') . "\n"; 46 print MBStringChars(mb_strcut($utf8, 1, 4, 'UTF-8'), 'UTF-8') . "\n";
|
H A D | bug60306.phpt | 2 Bug #60306 (Characters lost while converting from cp936 to utf8) 8 var_dump($s === mb_convert_encoding(mb_convert_encoding($s, "cp936", "utf8"), "utf8", "cp936"));
|
H A D | mb_strwidth.phpt | 13 $utf8 = '∮ E⋅da = Q'; 22 print "2: " . mb_strwidth($utf8, 'UTF-8') . "\n";
|
H A D | mb_strlen.phpt | 48 $utf8 = mb_convert_encoding($euc_jp, 'UTF-8','EUC-JP'); 49 print mb_strlen($utf8,'UTF-8') . "\n"; 51 print strlen($utf8) . "\n";
|
/PHP-8.0/ext/intl/tests/ |
H A D | bug75317.phpt | 9 $utf8 = UConverter::getAliases('utf-8')[0]; 20 printResult($c->getDestinationEncoding(), $utf8); 21 printResult($c->getSourceEncoding(), $utf8); 31 printResult($c->getDestinationEncoding(), $utf8); 37 printResult($c->getDestinationEncoding(), $utf8);
|
H A D | bug69374.phpt | 2 IntlDateFormatter::formatObject(): returns wrong utf8 value when $format param is utf8 string patte…
|
/PHP-8.0/ext/pcre/tests/ |
H A D | invalid_utf8_offset.phpt | 6 die('skip no utf8 support in PCRE library'); 12 $string = "\xc3\xa9 uma string utf8 bem formada"; 32 string(28) " uma string utf8 bem formada"
|
H A D | invalid_utf8.phpt | 6 die('skip no utf8 support in PCRE library');
|
/PHP-8.0/ext/mysqli/tests/ |
H A D | bug37090.phpt | 21 $cs[] = $mysql->set_charset("utf8"); 39 string(4) "utf8" 43 string(4) "utf8"
|
H A D | mysqli_fetch_assoc_no_alias_utf8.phpt | 2 mysqli_fetch_assoc() - utf8 18 if (strtolower($tmp['Charset']) !== 'utf8') 39 /* some cyrillic (utf8) comes here */ 51 …ement primary key, име varchar(20) character set ucs2, фамилия varchar(20) character set utf8)")) {
|
/PHP-8.0/ext/iconv/tests/ |
H A D | iconv_basic_001.phpt | 8 <?php if(setlocale(LC_ALL, "en_US.utf8") === false) { die('skip en_US.utf8 locales not available');… 11 setlocale(LC_ALL, "en_US.utf8");
|
/PHP-8.0/ext/standard/tests/file/windows_mb_path/ |
H A D | bug75063_utf8.phpt | 20 $prefix = __DIR__ . DIRECTORY_SEPARATOR . "bug75063-utf8"; 58 $prefix = __DIR__ . DIRECTORY_SEPARATOR . "bug75063-utf8"; 74 string(%d) "%sbug75063-utf8%eтест"
|
H A D | test_cp1251_0.phpt | 35 echo "open utf8 failed\n"; 43 string(35) "opened an utf8 filename for reading"
|
H A D | test_cp1251_to_utf8_0.phpt | 32 echo "open utf8 failed\n"; 40 string(35) "opened an utf8 filename for reading"
|
/PHP-8.0/ext/phar/tests/ |
H A D | create_new_phar.phpt | 17 'Text in utf8 file.'); 25 Text in utf8 file.
|
/PHP-8.0/tests/lang/ |
H A D | bug73172.phpt | 6 setlocale(LC_ALL, 'fr_FR.utf8', 'fra');
|