php strip spaces string code example
Example 1: remove space from string php
<?php
$stripped = str_replace(' ', '', "10 1000 0000 000");
echo $stripped;
Example 2: php remove all whitespace from a string
//remove all white spaces from a string
$whatonearth=preg_replace('/\s/','',"what o n ear th");