/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/spl/tests/iterator_068.phpt
32 строки
613 B
Máté Kocsis
Declare tentative return types in ext/spl - part 3 (#7239)
16 июл 2021, 13:09
Не верифицирован
16 июл 2021, 13:09
b3e0888
Код
Авторство
О чём код?
--TEST-- SPL: Iterator: Overloaded object and destruction --FILE-- <?php class Test implements Iterator { function foo() { echo __METHOD__ . "()\n"; } function rewind(): void {} function valid(): bool {} function current(): mixed {} function key(): mixed {} function next(): void {} } class TestIteratorIterator extends IteratorIterator { function __destruct() { echo __METHOD__ . "()\n"; $this->foo(); } } $obj = new TestIteratorIterator(new Test); $obj->foo(); unset($obj); ?> --EXPECT-- Test::foo() TestIteratorIterator::__destruct() Test::foo()