/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/dom/tests/DOMNode_replaceChild_error2.phpt
20 строк
450 B
Ilija Tovilo
Close PHP tags in tests
18 окт 2023, 18:34
Не верифицирован
18 окт 2023, 18:34
f39b5c4
Код
Авторство
О чём код?
--TEST-- replaceChild() where the new node is a grandparent of the old node --EXTENSIONS-- dom --FILE-- <?php $document = new DOMDocument(); $a = $document->createElement('a'); $b = $document->createElement('b'); $c = $document->createElement('c'); $a->appendChild($b); $b->appendChild($c); try { $b->replaceChild($a, $c); } catch (DOMException $e) { echo "DOMException: " . $e->getMessage(); } ?> --EXPECT-- DOMException: Hierarchy Request Error