欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

一個目錄遍歷函數(shù)

 更新時間:2006年10月09日 00:00:00   作者:  

一個目錄遍歷函數(shù) <?php

function dirtree($path="./test") {
  echo "<dl>";
  $d = dir($path);
  while(false !== ($v = $d->read())) {
    if($v == "."
$v == "..")
      continue;
    $file = $d->path."/".$v;
    echo "<dt>$v";
    if(is_dir($file))
      dirtree($file);
  }
  $d->close();
  echo "</dl>";
}

dirtree();
?>

相關(guān)文章

最新評論