How can I replace "" (I think it's called double quotes) with '' (I think its called single quotes) using PHP?
""
''
str_replace('"', "'", $text);
or Re-assign it
$text = str_replace('"', "'", $text);
1.4m articles
1.4m replys
5 comments
57.0k users