Как заменить двойные кавычки в строке в php

to replace double quotes, you can do this:
$newPhrase = str_replace('"', '', $phrase);
Tanzeela Yousuf