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);