/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/lang/array_shortcut_005.phpt
20 строк
314 B
Pierre Joye
- add short array syntax as defined in https://wiki.php.net/rfc/shortsyntaxforarrays, 2nd solution using => only
24 июл 2011, 00:23
24 июл 2011, 00:23
cbe0ed8
Код
Авторство
О чём код?
--TEST-- Testing nested array shortcut --FILE-- <?php print_r([1, 2, 3, ["foo" => "orange", "bar" => "apple", "baz" => "lemon"]]); ?> --EXPECT-- Array ( [0] => 1 [1] => 2 [2] => 3 [3] => Array ( [foo] => orange [bar] => apple [baz] => lemon ) )