Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an array I'm getting back in a scandir I'm trying to use to place into a database, but the issue is that I'm getting back the following array with a "." and ".."

Scandir Code

$indir = scandir('../pages');
$fileextensions = array(".", "php", "html", "htm", "shtml");
$replaceextensions = str_replace($fileextensions, "", $indir);

I am doing a string replace on the file extensions, thus causing [0] and [1] to appear empty, but they are "." and ".."

array(4) {
[0]=>
string(0) ""
[1]=>
string(0) ""
[2]=>
string(4) "test"
[3]=>
string(4) "home"
}

How would I remove those two period returns?

share|improve this question

2 Answers

up vote 1 down vote accepted

You can use array_filter.

$indir = array_filter(scandir('../pages'), function($item) {
    return !is_dir('../pages/' . $item);
});

Note this filters out all directories and leaves only files and symlinks. If you really want to only exclude only files (and directories) starting with ., then you could do something like:

$indir = array_filter(scandir('../pages'), function($item) {
    return $item[0] !== '.';
});
share|improve this answer
Awesome. Perfect explanation. Thanks so much. – Rbn Feb 4 at 4:05
Please mark the solution as correct :-) – leftclickben Feb 4 at 4:07
Don't use array_filter with a callback for this, just use array_diff. – Arnold Daniels Feb 4 at 4:08
@ArnoldDaniels That would only work to remove exactly . and .., my solutions are more generalised and neither can be done with array_diff() – leftclickben Feb 4 at 4:11
@leftclickben Removing . and .. is exactly his question. – Arnold Daniels Feb 4 at 4:14
show 2 more comments

array_diff will do what you're looking for:

$indir = scandir('../pages');
$fileextensions = array(".", "php", "html", "htm", "shtml");
$indir = array_diff($indir, array('.', '..'));
$replaceextensions = str_replace($fileextensions, "", $indir);

http://php.net/manual/en/function.array-diff.php

share|improve this answer
This won't work for what I'm trying to do. I'm trying to get rid of the auto generated . and .. that gets put into the array of a scandir. – Rbn Feb 4 at 4:02
I misread your question. I've updated my answer. – Duotrigesimal Feb 4 at 4:08

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.