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