-3
<?php
$dit = new DirectoryIterator('.');
while ($dit->valid()) {
if (!$dit->isDot()) {
echo $dit->getFilename() . "\n";
}
$dit->next();
}
unset($dit);
?>
什麼是'。' DirectoryIterator方法中的參數意味着什麼?什麼是「。」參數在PHP?
假如你認爲[閱讀手冊](http://php.net/manual/en/directoryiterator.construct.php)? – Quentin
點表示當前目錄,但是,請閱讀手冊。 –
是@Quentin我只是一個PHP的開始。 –