Answers for "how to remove quotes marks from a string in php"

PHP
0

php remove quotes

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

Delete quotes in php

// Provides: Hll Wrld f PHP
$vowels = array("a", "e", "i", "o", "u", "A", "E", "I", "O", "U");
$onlyconsonants = str_replace($vowels, "", "Hello World of PHP");
Posted by: Guest on September-04-2021

Code answers related to "how to remove quotes marks from a string in php"

Browse Popular Code Answers by Language