<?php
$stripped = str_replace(' ', '', "10 1000 0000 000");
echo $stripped;
$words = ' my words ';
$words = trim($words);
var_dump($words);
// string(8) "my words"
<?php
$phone = preg_replace( '/s+/', '', "01234 567890" );
echo $phone;
<?php
$name = "Yeasin_ahammed_apon"
#str_replace('what u want to replace', 'with what ', $name);
str_replace('_', ' ', $name);
echo $name;
# output: Yeasin ahammed apon
?>
#str_replace('what u want to replace', 'with what ', $name);