Answers for "php array stop removing spaces from string"

PHP
6

remove spaces from string php

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

Code answers related to "php array stop removing spaces from string"

Browse Popular Code Answers by Language