<?php $a = [ ['a', 'b', 'c'], ['d', 'e', 'f'], ]; array_walk_recursive($a, function(&$v) { $v = strtoupper($v); } ); print_r($a);
You have javascript disabled. You will not be able to edit any code.