Answers for "php remove all blank spaces from an array"

PHP
-1

remove all spaces php

$string = "this is my     string"
$string = preg_replace('/s+/', '', $string);
Posted by: Guest on October-02-2020

Code answers related to "php remove all blank spaces from an array"

Browse Popular Code Answers by Language