I'm working with PHP, getting html from websites, converting them to plain text and saving them to the database.

They need to be saved to the database in utf-8. My first problem is that I don't know the original encoding, what's the best way to encode to utf-8 from an unknown encoding?

the 2nd issue is the html to plain text conversion. I tried using html2text but it messed up all the foreign utf characters.

What is the best approach?

Edit: It seems the part about plain text is not clear enough. What i need not to just strip the html tags. I want to strip the tags while maintaining a kind of document structure. <p>, <li> tags would convert to line breaks etc and tags like <script> would be completely removed with their content.

link|improve this question

Did you try utf8_encode ? – Antonio Laguna Dec 2 '11 at 16:02
@AntonioLaguna utf8_encode only converts strings encoded in ISO-8859-1 – chaft Dec 2 '11 at 16:08
Not sure exactly what you want from text/plain encoding (whether you want to keep the tags, strip the tags, or somewhere in between) ... it might be worth taking a look at HTML Purifier for your conversion though: htmlpurifier.org – CD001 Dec 2 '11 at 16:59
Related: stackoverflow.com/questions/1884550/… – Herbert Dec 2 '11 at 17:08
feedback

2 Answers

  • Use mb_detect_encoding() for encoding detection.

  • Use strip_tags() to get rid of HTML tags.

Rest of the subjects like formatting the output depends on your needs.

Edit: I don't know if a complete solution exists but this link is really helpful to improve existing html to text PHP scripts on your own.

http://www.phpwact.org/php/i18n/utf-8

link|improve this answer
mb_detect_encoding seems to be what i'm looking for. but strip tags is not quite it. i need a more advanced library like html2text that would be utf8 friendly. – chaft Dec 2 '11 at 16:07
@chaft: html2text is for conversion and formatting text. If it is utf8 friendly, then it shouldn't mess up the characters. Check this link which states "[strip_tags()] may be multi-byte safe if you use UTF-8 only (multi-byte UTF-8 characters contain no byte sequences that resemble less-than or greater-than symbols). Avoid UTF-16 & UTF-32, among others." – Herbert Dec 2 '11 at 16:21
please check my update. – Emir Akaydın Dec 2 '11 at 16:21
@EmirAkaydın: I'd +1 your answer again if I could. :) – Herbert Dec 2 '11 at 16:33
@Herbert html2text is not utf8 friendly. strip_tags() is not what i am looking for. It indiscriminately strips tags, and might wreck havoc in a text with html tags. + with tags like <script> it will mix up javascipt and text. – chaft Dec 2 '11 at 16:41
feedback

This function may be useful to you:

<?php
function FixEncoding($x){
  if(mb_detect_encoding($x)=='UTF-8'){
    return $x;
  }else{
    return utf8_encode($x);
  }
}
?>
link|improve this answer
Yes, but not with utf8_encode, you should use mb_convert_encoding. utf_encode only encodes from ISO-8859-1 – chaft Dec 2 '11 at 16:42
feedback

Your Answer

 
or
required, but never shown

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