(PHP 5, PHP 7, PHP 8)
DirectoryIterator::key — Devuelve la clave del elemento actual DirectoryIterator
Obtiene la clave para el elemento actual DirectoryIterator.
Esta función no tiene parámetros.
La clave para el elemento actual DirectoryIterator. The key for the current DirectoryIterator item as an int.
Versión | Descripción |
---|---|
8.1.0 |
When the iterator is uninitialized, an Error is
thrown now. Previously, the method returned false .
|
Ejemplo #1 Ejemplo de DirectoryIterator::key()
<?php
$dir = new DirectoryIterator(dirname(__FILE__));
foreach ($dir as $fileinfo) {
if (!$fileinfo->isDot()) {
echo $fileinfo->key() . " => " . $fileinfo->getFilename() . "\n";
}
}
?>
El resultado del ejemplo sería algo similar a:
0 => manzana.jpg 1 => banana.jpg 2 => index.php 3 => pera.jpg