Answers for "how to remove double quotes from string php"

PHP
0

php remove quotes

str_replace('"', "", $string);
Posted by: Guest on January-13-2021
-1

how to replace double quotes in a string in php

to replace double quotes, you can do this:
$newPhrase = str_replace('"', '', $phrase);
Posted by: Guest on July-29-2021

Code answers related to "how to remove double quotes from string php"

Browse Popular Code Answers by Language