php remove spaces between line code example
Example: remove spaces from string php
<?php
$phone = preg_replace( '/\s+/', '', "01234 567890" );
echo $phone;
<?php
$phone = preg_replace( '/\s+/', '', "01234 567890" );
echo $phone;