Answers for "php remove all single quotes from string"

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

Code answers related to "php remove all single quotes from string"

Browse Popular Code Answers by Language