/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/intl/tests/resourcebundle_iterator.phpt
73 строки
1 KB
Nikita Popov
Migrate SKIPIF -> EXTENSIONS (#7138)
11 июн 2021, 12:57
Не верифицирован
11 июн 2021, 12:57
7485978
Код
Авторство
О чём код?
--TEST-- Test ResourceBundle iterator --EXTENSIONS-- intl --FILE-- <?php include "resourcebundle.inc"; // fall back $r = new ResourceBundle( 'en_US', BUNDLE ); foreach ($r as $onekey => $oneval) { echo "Here comes $onekey:\n"; switch (gettype($oneval)) { case 'string': echo bin2hex( $oneval ) . "\n"; break; case 'integer': echo "$oneval\n"; break; default: print_r( $oneval ); } echo "\n"; } echo "Testarray Contents:\n"; $r = $r->get( 'testarray' ); foreach ($r as $onekey => $oneval) { echo "$onekey => $oneval\n"; } ?> --EXPECT-- Here comes testarray: ResourceBundle Object ( ) Here comes testbin: a1b2c3d4e5f67890 Here comes testint: 2 Here comes teststring: 48656c6c6f20576f726c6421 Here comes testtable: ResourceBundle Object ( ) Here comes testvector: Array ( [0] => 1 [1] => 2 [2] => 3 [3] => 4 [4] => 5 [5] => 6 [6] => 7 [7] => 8 [8] => 9 [9] => 0 ) Testarray Contents: 0 => string 1 1 => string 2 2 => string 3