مشکل کد زیر چیه که امکان داره فایل های دیگه ای به جز jpg و jpeg و jif و Png هم جز حلقه قرار بگیره؟
if (file_exists(TARGET_DIRECTORY) && is_dir(TARGET_DIRECTORY)) { $it = new RecursiveDirectoryIterator(TARGET_DIRECTORY); $display = Array('jpg', 'jpeg', 'gif', 'png'); foreach (new RecursiveIteratorIterator($it) as $file) { if (in_array(strtolower(array_pop(explode('.', $file))), $display)) { /// loop for each images here and some other jobs, but here I see an error because the format is not one of: 'jpg', 'jpeg', 'gif', 'png' } } }