<?php $input = array('assets/image/man.jpg', 'assets/image/violin.jpg', 'assets/image/test.txt'); $images = array(); $images_exts = array('jpg','png'); foreach($input as $value) { echo @end(explode('.', $value)); if(in_array(@end(explode('.', $value)), $images_exts)) { $images[] = $value; } } var_dump($images);
You have javascript disabled. You will not be able to edit any code.