所以我正在通过 PHP Docs 阅读和写入 PHP 中的文件,有一个我不太明白的例子:
http://php.net/manual/en/function.readdir.php
如果到最后它显示了一个这样的例子:
<?php
if ($handle = opendir('.')) {
while (false !== ($entry = readdir($handle))) {
if ($entry != "." && $entry != "..") {
echo "$entry\n";
}
}
closedir($handle);
}
?>
在什么情况下会.
或..
曾经被阅读?