I have php funcation that scan dir and save content list into text.It works well but now i want to add filter funcation that restrict given extentoin to prevent to save into text.
function dirscan($dir,$file){
$folder = scandir($dir);
natsort($folder);
foreach ($folder as $value)
{
{
if ($value != '.' && $value != '..')
$val=$value."\r\n";
}
$fh = fopen($file,'a');
fwrite($fh,$val);
}
}