programming-examples/php/Arrays/PHP script to lower-case and upper-case, all elements in an array.php
2019-11-15 12:59:38 +01:00

9 lines
236 B
PHP

<?php
$colors = array( "Red", "Green", "Black", "White");
print_r($colors);
$lower_colors = array_map('strtolower', $colors);
print_r($lower_colors);
$upper_colors = array_map('strtoupper', $colors);
print_r($upper_colors);
?>