Answers for "php remove double quotes from string"

PHP
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 "php remove double quotes from string"

Browse Popular Code Answers by Language