note 102368 deleted from function.utf8-encode by danbrown

[email protected] Fri, 11 Feb 2011 06:53:36 -0800
Newsgroups php.notes
Message-ID <[email protected]>
Note Submitter: powtac 4t gmx d0t de 

----

I tried a lot of things, but this seems to be the final fail save method to convert any string to proper UTF-8.

<?php
function _convert($content) {
    if(!mb_check_encoding($content, 'UTF-8') 
        OR !($content === mb_convert_encoding(mb_convert_encoding($content, 'UTF-32', 'UTF-8' ), 'UTF-8', 'UTF-32'))) {

        $content = mb_convert_encoding($content, 'UTF-8');

        if (mb_check_encoding($content, 'UTF-8')) {
            // log('Converted to UTF-8');
        } else {
            // log('Could not converted to UTF-8');
        }
    }
}
?>