Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
$blogDir = 'blog/';
$blogdirHandle = opendir( $blogDir );
$checkingFile;
$number = 0;
$codeNumber = '-'.$number.'-';
if( $blogdirHandle = opendir( 'blog/' ) )
{
    while( ( $checkingFile = readdir( $blogdirHandle ) ) !== false ) 
    {
        if( $checkingFile != '.' && $checkingFile != '..' && !is_dir( $checkingFile ) && strpos( $checkingFile, $codeNumber ) !== false )
        {
            $number++;
        }
    }
    closedir( $blogdirHandle );
}

What I'm trying to do is:

Go through the $blogDir directory, and search for a file that has the same $codeNumber ( -$number- ), and if a file is found, then increase $number by one and search until all files are searched through. For some reason it's not working. It won't increase the value of $number, even though there are files with the same $codeNumber in the directory.. Any help?

share|improve this question

1 Answer

up vote 7 down vote accepted

Once you increment $number, you need to re-assign $codeNumber inside your loop:

if( $blogdirHandle = opendir( 'blog/' ) )
{
    while( ( $checkingFile = readdir( $blogdirHandle ) ) !== false ) 
    {
        if( $checkingFile != '.' && $checkingFile != '..' && !is_dir( $checkingFile ) && strpos( $checkingFile, $codeNumber ) !== false )
        {
            $number++;
            $codeNumber = '-'.$number.'-';
        }
    }
    closedir( $blogdirHandle );
}
share|improve this answer
Yep. Thanks so much. I knew the answer was something stupidly simple like that, but I just couldn't put my finger on it. – И - Mar 9 '12 at 22:04
By the way, there's also an issue with the call to is_dir(). You need to add the blog/ directory to it like this: !is_dir( $blogDir.$checkingFile ) - it's working anyway though, because if the file doesn't exist it returns false. – p.g.l.hall Mar 9 '12 at 22:06
might make sense to put $codeNumber = '-'.$number.'-'; at the beginning of the while, instead of outside, or in the if – Ascherer Mar 9 '12 at 22: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.