Hi,
Can php convert strings with all charset encodes to utf8?
Solutions that don't works:
utf8_encode($string)
- but its only Encodes an ISO-8859-1 string to UTF-8?iconv($incharset, $outcharset,$text)
- but how can be find string current encodding? (only can be if string part of html dom document, not just string)
thanks