mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
37 lines
848 B
PHP
37 lines
848 B
PHP
--TEST--
|
|
Dom\HTMLDocument GB18030 encoding test
|
|
--EXTENSIONS--
|
|
dom
|
|
--FILE--
|
|
<?php
|
|
|
|
$dom = Dom\HTMLDocument::createFromFile(__DIR__ . "/gb18030.html");
|
|
var_dump($dom->charset);
|
|
$dom->documentElement->firstChild->nextElementSibling->textContent = "é";
|
|
$output = $dom->saveHtml();
|
|
echo $output, "\n";
|
|
$dom->saveHtmlFile(__DIR__ . "/gb18030_output.tmp");
|
|
var_dump(file_get_contents(__DIR__ . "/gb18030_output.tmp") === $output);
|
|
|
|
echo "--- After changing encoding to UTF-8 ---\n";
|
|
$dom->charset = "UTF-8";
|
|
echo $dom->saveHtml(), "\n";
|
|
|
|
?>
|
|
--CLEAN--
|
|
<?php
|
|
@unlink(__DIR__ . "/gb18030_output.tmp");
|
|
?>
|
|
--EXPECT--
|
|
string(7) "gb18030"
|
|
<!DOCTYPE html><html><head>
|
|
<meta charset="gb18030">
|
|
</head>
|
|
<body>¨¦</body></html>
|
|
bool(true)
|
|
--- After changing encoding to UTF-8 ---
|
|
<!DOCTYPE html><html><head>
|
|
<meta charset="gb18030">
|
|
</head>
|
|
<body>é</body></html>
|