/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/simplexml/tests/gh12167.phpt
23 строки
436 B
Niels Dossche
Fix GH-12167 and GH-12169: Unable to get comment or processing instruction contents in SimpleXML
25 сен 2023, 20:47
25 сен 2023, 20:47
82a84d0
Код
Авторство
О чём код?
--TEST-- GH-12167 (Unable to get processing instruction contents in SimpleXML) --EXTENSIONS-- simplexml --FILE-- <?php $xml = <<<XML <?xml version="1.0"?> <container> <?foo pi contents ?> </container> XML; $sxe = simplexml_load_string($xml); var_dump($sxe->xpath("//processing-instruction()")[0]->getName()); var_dump((string) $sxe->xpath("//processing-instruction()")[0]); ?> --EXPECT-- string(3) "foo" string(12) "pi contents "