I like to delete all .gif images from subdirectory i tried with glob
but its getting only 1st level subdirectory
$dirs = array_filter(glob('main/*'), 'is_dir');
but i have directory like this
Main
Sub 1
Sub 1-2
Sub 1-3
Sub 1-4
Sub 2
Sub 2-1
Sub 3
Sub 4
Sub 4-1
Sub 4-2
Sub 4-3
How to check in all subdirectory and delete only .gif images ?