Why is it whenever I use scandir() I receive periods at the beginning of the array?

后端 未结 5 1429
北荒
北荒 2020-12-01 15:45

Why is it whenever I use scandir() I receive periods at the beginning of the array?

Array
(
    [0] => .
    [1] => ..
    [2] => bar.php
    [3] =&         


        
相关标签:
5条回答
  • 2020-12-01 16:14

    In Unix convention . is a link to the current directory while .. is a link to the parent directory. Both of them exist as a file in the directory index.

    0 讨论(0)
  • 2020-12-01 16:23

    Those are the current (.) and parent (..) directories. They are present in all directories, and are used to refer to the directory itself and its direct parent.

    0 讨论(0)
  • 2020-12-01 16:26

    To remove . and .. from scandir use this function:

    function scandir1($dir)
    {
        return array_values(array_diff(scandir($dir), array('..', '.')));
    }
    

    The array_values command re-indexes the array so that it starts from 0. If you don't need the array re-indexing, then the accepted answer will work fine. Simply: array_diff(scandir($dir), array('..', '.')).

    0 讨论(0)
  • 2020-12-01 16:32

    In one line of code:

    $files=array_slice(scandir('/path/to/directory/'), 2);
    
    0 讨论(0)
  • 2020-12-01 16:33

    There are two entries present in every directory listing:

    • . refers to the current directory
    • .. refers to the parent directory (or the root, if the current directory is the root)

    You can remove them from the results by filtering them out of the results of scandir:

    $allFiles = scandir(__DIR__); // Or any other directory
    $files = array_diff($allFiles, array('.', '..'));
    
    0 讨论(0)
提交回复
热议问题