mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01: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
21 lines
602 B
PHP
21 lines
602 B
PHP
--TEST--
|
|
Bug #35673 (formatOutput does not work with saveHTML).
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
$html = '<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>This is the title</title></head></html>';
|
|
|
|
$htmldoc = new DOMDocument();
|
|
$htmldoc->loadHTML($html);
|
|
$htmldoc->formatOutput = true;
|
|
echo $htmldoc->saveHTML();
|
|
?>
|
|
--EXPECT--
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
|
|
<html><head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>This is the title</title>
|
|
</head></html>
|