PHP Convert the values of an array into uppercase – PHP May 11, 2011 Pramod T P Leave a comment <?php $testArray = array("Value1","Value2", "Value3"); print_r(array_map('strtoupper', $testArray)); // Array ( [0] => VALUE1 [1] => VALUE2 [2] => VALUE3 ) ?>