/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/xmlreader/tests/fromStream_custom_constructor_error.phpt
26 строк
451 B
Niels Dossche
[RFC] Add stream open functions to XML{Reader,Writer}
29 июн 2024, 19:04
29 июн 2024, 19:04
acf2762
Код
Авторство
О чём код?
--TEST-- XMLReader::fromStream() - custom constructor with error --EXTENSIONS-- xmlreader --FILE-- <?php class CustomXMLReader extends XMLReader { public function __construct() { throw new Error('nope'); } } $h = fopen("php://memory", "w+"); fwrite($h, "<root/>"); fseek($h, 0); try { CustomXMLReader::fromStream($h, encoding: "UTF-8"); } catch (Throwable $e) { echo $e->getMessage(), "\n"; } fclose($h); ?> --EXPECT-- nope