php remove spaces and enters code example
Example 1: remove spaces from string php
<?php
$phone = preg_replace( '/\s+/', '', "01234 567890" );
echo $phone;
Example 2: remove symbolsand spaces php
preg_replace('/[^A-Za-z0-9]/', "", $data)
<?php
$phone = preg_replace( '/\s+/', '', "01234 567890" );
echo $phone;
preg_replace('/[^A-Za-z0-9]/', "", $data)