在PHP中列出文件夹时,html源代码中有3个点



这是我写的代码,但在文件夹名称显示之前,我一直看到这3个点:

<?php
$dir=new DirectoryIterator("wallpapers");

 while ($dir->valid())
  {
     $file=$dir->current();
echo $file->getFilename();
echo "<br>";
 $dir->next();
 }
?>

使用这个应该很好

$dir = "/etc/php5/*";

foreach(glob($dir) as $file) 
{
    echo "filename: $file : filetype: " . filetype($file) . "<br />";
}

相关内容

  • 没有找到相关文章

最新更新