remove quotes from string php code example
Example 1: php remove quotes
str_replace('"', "", $string);
Example 2: remove space from string php
<?php
$stripped = str_replace(' ', '', "10 1000 0000 000");
echo $stripped;
Example 3: string remove line breaks php
preg_replace( "/\r|\n/", "", $yourString );