mirror of
https://github.com/php/php-src.git
synced 2026-04-19 14:01:01 +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
15 lines
273 B
PHP
15 lines
273 B
PHP
--TEST--
|
|
Bug #74004 (DOMDocument->loadHTML and ->loadHTMLFile do not heed LIBXML_NOWARNING and LIBXML_NOERROR options)
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
|
|
$doc=new DOMDocument();
|
|
$doc->loadHTML("<tag-throw></tag-throw>",LIBXML_NOERROR);
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
===DONE===
|