Re: [PHP] RTFM code snippet

2002-01-11 Thread Andrey Hristov
ot; <[EMAIL PROTECTED]> Sent: Friday, January 11, 2002 5:01 PM Subject: [PHP] RTFM code snippet > hey folks, hope the new year is treating everyone well. > > i was RTFMing yesterday and ran across this piece of code > > while (false !== ($file = readdir($handle))) { >

Re: [PHP] RTFM code snippet

2002-01-11 Thread Andrey Hristov
also makes type comparison. Regards, Andrey Hristov - Original Message - From: "mike cullerton" <[EMAIL PROTECTED]> To: "php-general" <[EMAIL PROTECTED]> Sent: Friday, January 11, 2002 5:01 PM Subject: [PHP] RTFM code snippet > hey folks, hope the ne

[PHP] RTFM code snippet

2002-01-11 Thread mike cullerton
hey folks, hope the new year is treating everyone well. i was RTFMing yesterday and ran across this piece of code while (false !== ($file = readdir($handle))) { which is similar to stuff i've done while ($file = readdir($dir)) { so, what am i not catching with my code, and what is really