Why is it whenever I use scandir() I receive periods at the beginning of the array?
Array
(
[0] => .
[1] => ..
[2] => bar.php
[3] =&
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.
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.
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('..', '.')).
In one line of code:
$files=array_slice(scandir('/path/to/directory/'), 2);
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('.', '..'));