php delete space in start and end of string code example
Example 1: remove empty spaces php
$string = str_replace(' ', '', $string);
Example 2: remove spaces from string php
<?php
$phone = preg_replace( '/\s+/', '', "01234 567890" );
echo $phone;