cara mengganti kutipan ganda dalam string dalam php

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