我正在从外部服务器加载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" 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>
答案 0 :(得分:99)
我的波兰语有类似的问题
我试过了:
$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");
这最后完美的工作!!!!!!
答案 1 :(得分:68)
Solution suggested in the comments of the PHP manual entry for file_get_contents
function file_get_contents_utf8($fn) {
$content = file_get_contents($fn);
return mb_convert_encoding($content, 'UTF-8',
mb_detect_encoding($content, 'UTF-8, ISO-8859-1', true));
}
你也可以试试http://php.net/manual/en/function.mb-internal-encoding.php
答案 2 :(得分:6)
好的。我发现file_get_contents()没有导致这个问题。我在另一个问题中谈到了另一个不同的原因。傻我。
答案 3 :(得分:5)
我认为你只需要对字符类型进行双重转换:D
可能是因为您在html文档中打开了一个html文档。所以你最终会看到这样的东西
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
</head>
<body>
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Test</title>.......
因此,mb_detect_encoding
的使用可能会引发您的其他问题。
答案 4 :(得分:2)
试试这个
$url = 'http://www.domain.com/';
$html = file_get_contents($url);
//Change encoding to UTF-8 from ISO-8859-1
$html = iconv('UTF-8', 'ISO-8859-1//TRANSLIT', $html);
答案 5 :(得分:2)
İn土耳其语,mb_convert_encoding或任何其他字符集转换无效。
而且urlencode也没有用,因为空格字符转换为+ char。对于百分比编码,它必须是%20。
这个有用了!
$url = rawurlencode($url);
$url = str_replace("%3A", ":", $url);
$url = str_replace("%2F", "/", $url);
$data = file_get_contents($url);
答案 6 :(得分:1)
我设法在下面使用此功能来解决:
// Types
export const FETCH_POST_PENDING = 'FETCH_POST_PENDING';
export const FETCH_POST_SUCCESS = 'FETCH_POST_SUCCESS';
export const FETCH_ONE_POST_SUCCESS = 'FETCH_ONE_POST_SUCCESS';
export const FETCH_POST_ERROR = 'FETCH_POST_ERROR';
export const FETCH_POST_CREATE = 'FETCH_POST_CREATE';
export const FETCH_POST_UPDATE = 'FETCH_POST_UPDATE';
export const FETCH_POST_DELETE = 'FETCH_POST_DELETE';
//Actions
export function fetchPostsPending() {
return {
type: FETCH_POST_PENDING
}
}
//Index GetPosts
export function fetchPostsSuccess(posts) {
return {
type: FETCH_POST_SUCCESS,
payload: posts
}
};
//Show
export function fetchOnePostSuccess(onepost) {
return {
type: FETCH_ONE_POST_SUCCESS,
payload: onepost
}
};
export function fetchPostCreate(){
type: FETCH_POST_CREATE
};
export function fetchPostUpdate(){
type: FETCH_POST_UPDATE
};
export function fetchPostDelete(){
type: FETCH_POST_DELETE
};
// manque ds ls Action Create Updates Deletes**
export function fetchPostsError(error){
return {
type: FETCH_POST_ERROR,
error: error
}
}
答案 7 :(得分:0)
我正在处理35000行数据。
$f=fopen("veri1.txt","r");
$i=0;
while(!feof($f)){
$i++;
$line=mb_convert_encoding(fgets($f), 'HTML-ENTITIES', "UTF-8");
echo $line;
}
此代码将我的奇怪字符转换为正常字符。
答案 8 :(得分:0)
示例:
$string = file_get_contents(".../File.txt");
$string = mb_convert_encoding($string, 'UTF-8', "ISO-8859-1");
echo $string;
答案 9 :(得分:0)
我有一个类似的问题,解决的是html_entity_decode
。
我的代码是:
$content = file_get_contents("http://example.com/fr");
$x = new SimpleXMLElement($content);
foreach($x->channel->item as $entry) {
$subEntry = html_entity_decode($entry->description);
}
在这里,我正在检索一个xml文件(法语),这就是为什么我使用此$ x对象变量的原因。然后才将其解码为该变量$subEntry
。
我尝试了mb_convert_encoding
,但这对我不起作用。
答案 10 :(得分:0)
尝试使用此功能
function mb_html_entity_decode($string) {
if (extension_loaded('mbstring') === true)
{
mb_language('Neutral');
mb_internal_encoding('UTF-8');
mb_detect_order(array('UTF-8', 'ISO-8859-15', 'ISO-8859-1', 'ASCII'));
return mb_convert_encoding($string, 'UTF-8', 'HTML-ENTITIES');
}
return html_entity_decode($string, ENT_COMPAT, 'UTF-8');
}