/
usr
/
local
/
lsws
/
phpbuild
/
php-8.0.7
/
ext
/
xmlwriter
/
tests
/
File Upload :
llllll
Current File: //usr/local/lsws/phpbuild/php-8.0.7/ext/xmlwriter/tests/bug39504.phpt
--TEST-- Bug #39504 (xmlwriter_write_dtd_entity() creates Attlist tag, not enity) --SKIPIF-- <?php if (!extension_loaded("xmlwriter")) die("skip"); ?> --FILE-- <?php $xw = xmlwriter_open_memory(); xmlwriter_start_document($xw, NULL, "UTF-8"); xmlwriter_start_dtd($xw, "root"); xmlwriter_write_dtd_entity($xw, "ent2", "val2"); xmlwriter_end_dtd($xw); xmlwriter_start_element($xw, "root"); xmlwriter_end_document($xw); print xmlwriter_flush($xw, true); print "\n"; $xw = new XMLWriter(); $xw->openMemory(); $xw->startDocument(NULL, "UTF-8"); $xw->startDtd("root"); $xw->writeDtdEntity("c", NULL, 0, "-//W3C//TEXT copyright//EN", "http://www.w3.org/xmlspec/copyright.xml"); $xw->endDtd(); $xw->startElement("root"); $xw->endDocument(); print $xw->flush(true); ?> --EXPECT-- <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE root [<!ENTITY ent2 "val2">]><root/> <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE root [<!ENTITY c PUBLIC "-//W3C//TEXT copyright//EN" "http://www.w3.org/xmlspec/copyright.xml">]><root/>
Copyright ©2k19 -
Hexid
|
Tex7ure