file_get_contents () UTF-8 karakterler Up Tatili

4 Cevap php

Ben harici bir sunucudan bir HTML yükleme duyuyorum. HTML biçimlendirme UTF-8 kodlama vardır ve ben bu gibi file_get_contents ile HTML () yüklediğinizde gibi L, S, C, T, ž vb gibi karakterler içeriyor:

$html = file_get_contents('http://example.com/foreign.html');

Bu UTF-8 karakterleri ve yükleri Å ¾, ¤ ve benzeri saçma uygun yerine UTF-8 karakterleri işler karışıyor.

Bunu nasıl çözebilirim?

GÜNCELLEME:

Ben bir dosyaya HTML tasarrufu ve UTF-8 kodlaması ile çıktısı hem de çalıştı. Hem bu yüzden () zaten kırık HTML dönen file_get_contents gelir çalışmaz.

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>

4 Cevap

Tamam. I () bu soruna neden değil file_get_contents bulduk. Ben başka bir soru hakkında konuşmak, farklı bir sebebi var. Aptal beni.

Bu soruya bakın: http://stackoverflow.com/questions/2236889/why-does-dom-change-encoding

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));
}

Ayrıca http://de3.php.net/manual/en/function.mb-internal-encoding.php ile şansınızı deneyebilirsiniz

Ben lehçe dili ile benzer bir sorun vardı

Denedim:

$fileEndEnd = mb_convert_encoding($fileEndEnd, 'UTF-8', mb_detect_encoding($fileEndEnd, 'UTF-8', true));

Denedim:

$fileEndEnd = utf8_encode ( $fileEndEnd );

Denedim:

$fileEndEnd = iconv( "UTF-8", "UTF-8", $fileEndEnd );

Ve sonra -

$fileEndEnd = mb_convert_encoding($fileEndEnd, 'HTML-ENTITIES', "UTF-8");

Bu son amele mükemmel!!

D: Ben sadece orada karakter tip çift dönüşüm olduğunu düşünüyorum

Bir html belge içinde bir html belgeyi açmış, çünkü olabilir. Yani sonunda böyle görünen bir şey var

<!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>.......

Kullanımı mb_detect_encoding, bu nedenle diğer konularda size yol açabilir.