This question already has an answer here:
- Exclude hidden files from scandir 10 answers
I am trying to scan a folder of images, however I keep seeing the ._ files the mac created
I am using this code:
<?php
if ($handle = opendir('assets/automotive')) {
$ignore = array( 'cgi-bin', '.', '..','._' );
while (false !== ($file = readdir($handle))) {
if ( !in_array($file,$ignore)) {
echo "$file
";
}
}
closedir($handle);
}
?>
Any ideas as to why? I created a ignore array that covers it.
Update: Still shows both.
</div>