mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00

For rationale, see https://github.com/php/php-src/pull/6787 Make extension checks lowercase, add a special case for opcache that has internal name not matching .so filename. Extensions migrated in part 2: * dom * exif * fileinfo * ffi
19 lines
511 B
PHP
19 lines
511 B
PHP
--TEST--
|
|
DOMDocumentFragment::appendXML() with unbalanced chunks.
|
|
--CREDITS--
|
|
Eric Lee Stewart <ericleestewart@gmail.com>
|
|
# TestFest Atlanta 2009-05-24
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
$document = new DOMDocument;
|
|
$root = $document->createElement('root');
|
|
$document->appendChild($root);
|
|
|
|
$fragment = $document->createDocumentFragment();
|
|
@$fragment->appendXML('<foo>is<bar>great</foo>');
|
|
$root->appendChild($fragment);
|
|
?>
|
|
--EXPECTF--
|
|
Warning: DOMNode::appendChild(): Document Fragment is empty in %s on line %d
|