Strip double quotes from a string in PHP
how to replace double quotes in a string in php
to replace double quotes, you can do this:
$newPhrase = str_replace('"', '', $phrase);
How do I remove quotes from a string
str_replace('"', "", $string);
str_replace("'", "", $string);