Answers for "remove spaces and special characters in php like"

PHP
6

remove spaces from string php

<?php
$phone = preg_replace( '/\s+/', '', "01234 567890" );
echo $phone;
Posted by: Guest on May-31-2020
0

remove symbolsand spaces php

preg_replace('/[^A-Za-z0-9]/', "", $data)
Posted by: Guest on December-14-2020

Code answers related to "remove spaces and special characters in php like"

Browse Popular Code Answers by Language