<?php $files1 = array('AAA', 'BBB', 'CcC'); $files2 = array_filter($files1, function ( &$path ) { $path = strtolower($path); return true; }); var_dump($files1, $files2);
You have javascript disabled. You will not be able to edit any code.