/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/spl/tests/spl_cachingiterator___toString_basic.phpt
16 строк
463 B
Máté Kocsis
Fix #78880: Another bunch of spelling errors
16 янв 2020, 11:46
Не верифицирован
16 янв 2020, 11:46
0b4778c
Код
Авторство
О чём код?
--TEST-- SPL: SplCachingIterator, Test method to convert current element to string --CREDITS-- Chris Scott chris.scott@nstein.com #testfest London 2009-05-09 --FILE-- <?php $ai = new ArrayIterator(array(new stdClass(), new stdClass())); $ci = new CachingIterator($ai); var_dump( $ci->__toString() // if conversion to string is done by echo, for example, an exception is thrown. Invoking __toString explicitly covers different code. ); ?> --EXPECT-- string(0) ""