programming-examples/php/Arrays/PHP script to trim all the elements in an array using array_walk function..php

6 lines
177 B
PHP
Raw Normal View History

2019-11-15 12:59:38 +01:00
<?php
$colors = array( "Red ", " Green", "Black ", " White ");
print_r($colors);
array_walk($colors, create_function('&$val', '$val = trim($val);'));
print_r($colors);
?>