From:             [EMAIL PROTECTED]
Operating system: Win2K
PHP version:      4.0.6
PHP Bug Type:     Strings related
Bug description:  EVAL code not working correctly if IF block

<?php

$extensions=array(".htm",".asp");

$x="";
$numargs=count($extensions);
for ($i=0;$i<=$numargs-1;$i++){ 
        $x=$x."strstr(\$filename,\"".$extensions[$i]."\")";
        if ($numargs>0 && $i!=$numargs-1){
                $x=$x." || ";
        }               
}
$validExtensions=$x;
echo $validExtensions;

                
$handle=opendir('.');

while (($filename = readdir($handle))!==false) {
if (is_file($filename)){
        $fd = fopen ($filename, "rb");
        $contents = fread ($fd, filesize ($filename));

                if (eval($validExtensions)){
                                echo $filename."<br>";
                }

        fclose ($fd);
}

      

}
closedir($handle); 






?>
-- 
Edit bug report at: http://bugs.php.net/?id=12158&edit=1


-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to