/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/dom/tests/DOMComment_construct_basic_001.phpt
19 строк
559 B
Max Semenik
Migrate skip checks to --EXTENSIONS--, p2
01 апр 2021, 14:08
01 апр 2021, 14:08
bd9f4fa
Код
Авторство
О чём код?
--TEST-- DOMComment::__construct() with constructor called twice. --CREDITS-- Eric Lee Stewart <ericleestewart@gmail.com> # TestFest Atlanta 2009-05-25 --EXTENSIONS-- dom --FILE-- <?php $dom = new DOMDocument('1.0', 'UTF-8'); $element = $dom->appendChild(new DOMElement('root')); $comment = new DOMComment("This is the first comment."); $comment->__construct("This is the second comment."); $comment = $element->appendChild($comment); print $dom->saveXML(); ?> --EXPECT-- <?xml version="1.0" encoding="UTF-8"?> <root><!--This is the second comment.--></root>