PHP DOMDocument saveHTML not encoding cyrillic correctly
问题 I use DOMDocument to manipulate html and php 7. The problem is that text shows good on page (cyrillic), but when I go to "See HTML page source", it is not good . It shows like this: Здесь осн What might be wrong? <meta> charset is utf-8. My code: $dom = new DOMDocument(); if (@$dom->loadHTML(mb_convert_encoding("<div>$body</div>", 'HTML-ENTITIES', 'UTF-8'), LIBXML_HTML_NOIMPLIED | LIBXML_HTML_NODEFDTD)) { // https://stackoverflow.com/questions/29493678/loadhtml-libxml-html-noimplied-on-an