PHP:: How can be taken charset value of webpage with simple html dom parser (utf-8, windows-255, etc..)?

remark: its have to be done with html dom parser 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)

Thanks

link|improve this question

Run an xpath query for //meta[@http-equiv="Content-Type"]/@content. You'll have to parse the attribute value yourself. – Frank Farmer Jul 28 '10 at 18:19
how can be taken? – Fosco Jul 28 '10 at 18:19
What have you done so far? – MvanGeest Jul 28 '10 at 18:24
@Frank SimpleHTMLDom cant do Xpath – Gordon Jul 28 '10 at 18:28
Suggested third party alternatives that actually use DOM instead of String Parsing: phpQuery, Zend_Dom and FluentDom. – Gordon Jul 28 '10 at 18:28
feedback

3 Answers

up vote 2 down vote accepted

You'll have to match the string using a regular expression (I hope you have PCRE...).

$el=$html->find('meta[http-equiv=Content-Type]',0)
$fullvalue = $el->content;
preg_match('/charset=(.+)/', $fullvalue, $matches);
echo $matches[1];

Not very robust, but should work.

link|improve this answer
Thanks! I fix a bit and its works see my answer fix. $html = file_get_html('google.com/';); $el=$html->find('meta[content]',0); $fullvalue = $el->content; preg_match('/charset=(.+)/', $fullvalue, $matches); echo substr($matches[0], strlen("charset=")); – Yosef Jul 28 '10 at 18:49
Don't do that, I made a mistake. It should be $matches[1]. That makes it a lot faster and more reliable. – MvanGeest Jul 28 '10 at 18:52
feedback
$dd = new DOMDocument;
$dd->loadHTML($data);
foreach ($dd->getElementsByTagName("meta") as $m) {
    if (strtolower($m->getAttribute("http-equiv")) == "content-type") {
        $v = $m->getAttribute("content");
        if (preg_match("#.+?/.+?;\\s?charset\\s?=\\s?(.+)#i", $v, $m))
            echo $m[1];
    }
}

Note that the DOM extension implicitly converts all the data to UTF-8.

link|improve this answer
Now that's a bit more robust than what I wrote... :) – MvanGeest Jul 28 '10 at 18:31
Thanks for this option, because its very important to have utf-8 data. – Yosef Jul 28 '10 at 18:34
@Mva yeah, Content-Type is sometimes written "Content-type". At least in the http headers, case doesn't matter. – Artefacto Jul 28 '10 at 18:35
DomDocument not convert proper text always to utf-8. I still working to handle this problem. – Yosef Jul 30 '10 at 13:48
feedback

Thanks for MvanGeest answer - I just fix a bit and its works perfect.

$html = file_get_html('http://www.google.com/');
$el=$html->find('meta[content]',0);
$fullvalue = $el->content;
preg_match('/charset=(.+)/', $fullvalue, $matches);
echo substr($matches[0], strlen("charset="));
link|improve this answer
Don't do that - see the correction of my answer. – MvanGeest Jul 28 '10 at 18:53
Your fix not working – Yosef Jul 28 '10 at 19:49
Weird... it's working for me. You don't need the substr though... just $matches[1]. I tested it using Google. – MvanGeest Jul 28 '10 at 22:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.