Answers for "trime empty space from every array element php"

PHP
2

how to trim white space array in php

$fruit = array('  apple ','banana   ', ' , ',     '            cranberry ');
$trimmed_array = array_map('trim', $fruit);
print_r($trimmed_array);
Posted by: Guest on April-28-2020

Code answers related to "trime empty space from every array element php"

Browse Popular Code Answers by Language