(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