/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/spl/tests/bug70853.phpt
15 строк
276 B
Xinchen Hui
Fixed bug #70853 (SplFixedArray throws exception when using ref variable as index)
04 ноя 2015, 17:44
04 ноя 2015, 17:44
e4ac4e7
Код
Авторство
О чём код?
--TEST-- Bug #70853 (SplFixedArray throws exception when using ref variable as index) --FILE-- <?php $list = new SplFixedArray(10); $ndx = 1; $ndx2 =& $ndx; $list[$ndx] = 123; // This throws an exception; $list[$ndx2] = 123; // as does this, to. echo 'ok'; ?> --EXPECT-- ok