php:什么。和...表示在dir-> read()的输出中

时间:2013-09-04 01:31:53

标签: php

<?php

$d = dir('css');
echo "Handle: " . $d->handle . "<br>";
echo "Path: " . $d->path . "<br>";

while (($file = $d->read()) !== false){
  echo "filename: " . $file . "<br>";
}
$d->close();
?>

结果:

Handle: Resource id #4
Path: css
filename: .
filename: ..
filename: css
filename: img
filename: index.html
filename: js
filename: lightbox

问题:

在结果中,...是什么意思?

3 个答案:

答案 0 :(得分:5)

.是当前目录,..是一个目录。大多数代码示例都有if-statement s来跳过em。

以下是PHP文档中的示例:

http://php.net/manual/en/function.readdir.php#example-2318

即使在文档上,它也只显示忽略的代码。

答案 1 :(得分:0)

.是对当前目录的引用,..是一级目录。

例如,在linux中更改目录时,可以使用cd ..上一个目录。

答案 2 :(得分:0)

。表示linux系统中的当前目录

..表示linux系统中的父目录