I have some text data in an SQL database that consists of weird quotations that appear as �
on a webpage.
The quotations are these non ascii ”
style quotes instead of the normal "
I tried to do
$text = str_replace('”', '"', $text);
But it seems to have no effect. Does anyone know how I can handle this?