PHP-HTML ayrıştırma :: basit bir html dom Çözümleyici ile web sayfasının charset değerini nasıl alınabilir?

0 Cevap php

PHP :: basit html dom parser ile web sayfasının charset değerini nasıl alınabilir (utf-8, windows-255, vb.)?

not: onun html dom çözümleyici ile yapılması gerekir http://simplehtmldom.sourceforge.net

Example1 webpage charset input:

<meta content="text/html; charset=utf-8" http-equiv="Content-Type">

result:utf-8



Example2 webpage charset input:

<meta content="text/html; charset=windows-255" http-equiv="Content-Type">

result:windows-255

Edit:

I try this (but its not works):

$html = file_get_html('http://www.google.com/');
$el=$html->find('meta[content]',0);
echo $el->charset; 

What should be change? (I know that $el->charset not working)

Teşekkürler

0 Cevap