abhi_madhani Posted April 3, 2010 Share Posted April 3, 2010 Hi friends, I took this script from php.net that lists a name of file from a specified directory. $path = "./files/"; if ($handle = opendir($path)) { # while (false !== ($file = readdir($handle))) { if ($file != "." && $file != "..") { $thelist .= '<a href="'.$file.'">'.$file.'</a>'; } } closedir($handle); } can someone please shed off some light as to how this line of code is processed, and what it means. while (false !== ($file = readdir($handle))) Regards, Abhishek Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/ Share on other sites More sharing options...
litebearer Posted April 3, 2010 Share Posted April 3, 2010 bascially says 'do it til there are no more files' Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/#findComment-1036570 Share on other sites More sharing options...
abhi_madhani Posted April 3, 2010 Author Share Posted April 3, 2010 Thanks, I understood that it means that reads the list of files, till there are no more in that directory. So what role does !== [not identical to] plays in the while loop. Regards Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/#findComment-1036571 Share on other sites More sharing options...
litebearer Posted April 4, 2010 Share Posted April 4, 2010 this part carries an implicit value of TRUE as long as there are more files ($file = readdir($handle)) Once there are no more files, the implicit value is now FALSE so the !== is saying to the "WHILE' - when the implict value become FALSE stop looping Make sense? Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/#findComment-1036598 Share on other sites More sharing options...
ignace Posted April 4, 2010 Share Posted April 4, 2010 Alternatively you could use scandir Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/#findComment-1036678 Share on other sites More sharing options...
greatstar00 Posted April 4, 2010 Share Posted April 4, 2010 logically, these 2 are the same while (false !== ($file = readdir($handle))) while ($file = readdir($handle)) Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/#findComment-1036685 Share on other sites More sharing options...
Tazerenix Posted April 4, 2010 Share Posted April 4, 2010 why you wouldnt just use scandir() i dont know. Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/#findComment-1036694 Share on other sites More sharing options...
abhi_madhani Posted April 6, 2010 Author Share Posted April 6, 2010 Thanks for all your help. I am really grateful to you people. I am using this code, as I found it on php.net, but sooner or later I will try scandir() function to list file. Thanks again. Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/#findComment-1037989 Share on other sites More sharing options...
Tazerenix Posted April 7, 2010 Share Posted April 7, 2010 Thanks for all your help. I am really grateful to you people. I am using this code, as I found it on php.net, but sooner or later I will try scandir() function to list file. Thanks again. if you really want a file lister you can try my sitemap code. http://files.tazerenix-productions.com/sitemap/sitemap.zip http://files.tazerenix-productions.com/sitemap/sitemap.php Although its probably better to code your own as you would learn a lot more Quote Link to comment https://forums.phpfreaks.com/topic/197497-listing-files-from-a-directory/#findComment-1038080 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.