file_get_contents()分解UTF-8字符我正在从外部服务器加载HTML。HTML标记具有UTF-8编码,并包含诸如ľ,š,č,ť,ž等字符。当我使用file_get_contents()加载HTML时,如下所示:$html = file_get_contents('http://example.com/foreign.html');它弄乱了UTF-8字符并加载Å,¾,¤和类似的废话而不是正确的UTF-8字符。我怎么解决这个问题?更新:我尝试将HTML保存到文件并使用UTF-8编码输出。两者都不起作用,这意味着file_get_contents()已经返回损坏的HTML。UPDATE2:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns="http://www.w3.org/1999/xhtml" xml:lang="sk"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><meta http-equiv="Content-Style-Type" content="text/css" /><meta http-equiv="Content-Language" content="sk" /><title>Test</title></head><body><?php$html = file_get_contents('http://example.com');echo htmlentities($html);?></body></html>
3 回答
精慕HU
TA贡献1845条经验 获得超8个赞
我和波兰语有类似的问题
我试过了:
$fileEndEnd = mb_convert_encoding($fileEndEnd, 'UTF-8', mb_detect_encoding($fileEndEnd, 'UTF-8', true));
我试过了:
$fileEndEnd = utf8_encode ( $fileEndEnd );
我试过了:
$fileEndEnd = iconv( "UTF-8", "UTF-8", $fileEndEnd );
然后 -
$fileEndEnd = mb_convert_encoding($fileEndEnd, 'HTML-ENTITIES', "UTF-8");
这最后工作得很好!!!!!!
- 3 回答
- 0 关注
- 1068 浏览
添加回答
举报
0/150
提交
取消