Answers for "get rid of spaces in array element php"

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 "get rid of spaces in array element php"

Browse Popular Code Answers by Language