I\'m reading out lots of texts from various RSS feeds and inserting them into my database.
Of course, there are several different character encodings used in the fee
A really nice way to implement an isUTF8-function can be found on php.net:
isUTF8
function isUTF8($string) { return (utf8_encode(utf8_decode($string)) == $string); }