mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
24 lines
403 B
PHP
24 lines
403 B
PHP
--TEST--
|
|
Dom\HTMLDocument fallback encoding test
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
|
|
$dom = Dom\HTMLDocument::createFromFile(__DIR__ . "/fallback_encoding.html");
|
|
var_dump($dom->inputEncoding);
|
|
echo $dom->saveHtml();
|
|
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
@unlink(__DIR__ . "/windows1251_output.tmp");
|
|
?>
|
|
--EXPECT--
|
|
string(5) "UTF-8"
|
|
<!DOCTYPE html><html><head>
|
|
<meta charset="I don't exist">
|
|
</head>
|
|
<body>
|
|
</body></html>
|