Answers for "php trim double quotes"

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

Browse Popular Code Answers by Language