/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/classes/static_properties_001.phpt
25 строк
258 B
Nikita Popov
Reindent phpt files
04 фев 2020, 00:52
04 фев 2020, 00:52
f8d7958
Код
Авторство
О чём код?
--TEST-- ZE2 Initializing static properties to arrays --FILE-- <?php class test { static public $ar = array(); } var_dump(test::$ar); test::$ar[] = 1; var_dump(test::$ar); echo "Done\n"; ?> --EXPECT-- array(0) { } array(1) { [0]=> int(1) } Done