Answers for "remove double quotes from string php"

PHP
0

php remove quotes

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

php remove quotes from string

str_replace(['"',"'"], "", $text)
Posted by: Guest on October-25-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 "remove double quotes from string php"

Browse Popular Code Answers by Language