(PHP 5, PHP 7, PHP 8)
DirectoryIterator::key — 返回当前 DirectoryIterator 项的键
此函数没有参数。
当前 DirectoryIterator 项的键,作为一个 整数。
示例 #1 一个 DirectoryIterator::key() 示例
<?php
$dir = new DirectoryIterator(dirname(__FILE__));
foreach ($dir as $fileinfo) {
if (!$fileinfo->isDot()) {
echo $fileinfo->key() . " => " . $fileinfo->getFilename() . "\n";
}
}
?>
上面的例子将输出类似于
0 => apple.jpg 1 => banana.jpg 2 => index.php 3 => pear.jpg