Answers for "php remove double quotes on object"

PHP
0

php remove quotes

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

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 on object"

Browse Popular Code Answers by Language