<?
echo("There is ");
$dir = "C:/AppServ/www";
$count = 0;
$handle=opendir($dir);
while (($file = readdir($handle))!== false)
{
//若C:/AppServ/www实际有13个文件,如果没有此条if语句,则会列出有15条
if ($file != "." && $file != "..")
{ $count++; }
}
echo $count;
echo(" Pages For You To Search In This Directory.");
?>
echo("There is ");
$dir = "C:/AppServ/www";
$count = 0;
$handle=opendir($dir);
while (($file = readdir($handle))!== false)
{
//若C:/AppServ/www实际有13个文件,如果没有此条if语句,则会列出有15条
if ($file != "." && $file != "..")
{ $count++; }
}
echo $count;
echo(" Pages For You To Search In This Directory.");
?>