Answers for "how to replace double quotes in a string in php"

PHP
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 "how to replace double quotes in a string in php"

Browse Popular Code Answers by Language