使用php忽略隐藏文件[重复]

This question already has an answer here:

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>

I think you want to ignore any file that begins with a dot (.) and not just the filename.

<?php
if ($handle = opendir('assets/automotive')) {
    $ignore = array( 'cgi-bin', '.', '..','._' );
    while (false !== ($file = readdir($handle))) {
        if (!in_array($file,$ignore) and substr($file, 0, 1) != '.') {
            echo "$file
";
        }
    }
    closedir($handle);
}
?>

in_array() takes two parameters: the thing you want to find, and the array to search in. You want:

if ( !in_array($file, $ignore))

You're checking for in_array, but the next questions is: "is what in_array".

in_array needs a second parameter, in this case $file, to look for. You'll need:

in_array($file,$ignore);