After converting a string from one encoding to another, through the iconv function, in some places incomprehensible characters appear in the form of a quarantine with a question mark. How can you get rid of them?
Here's an example: "Car dry cleaning? Information portal of Yaroslavl and the region?"
code:
$rss = ob_get_contents(); $rss = mb_convert_encoding($rss, "windows-1251", mb_detect_encoding($rss));