PHP Doku:: Get inode for the current DirectoryIterator item - directoryiterator.getinode.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzSonstige GrunderweiterungenStandard PHP Library (SPL)IteratorenThe DirectoryIterator classDirectoryIterator::getInode

Ein Service von Reinhard Neidl - Webprogrammierung.

The DirectoryIterator class

<<DirectoryIterator::getGroup

DirectoryIterator::getMTime>>

DirectoryIterator::getInode

(PHP 5)

DirectoryIterator::getInodeGet inode for the current DirectoryIterator item

Beschreibung

public int DirectoryIterator::getInode ( void )

Get the inode number for the current DirectoryIterator item.

Parameter-Liste

Diese Funktion hat keine Parameter.

Rückgabewerte

Returns the inode number for the file.

Beispiele

Beispiel #1 DirectoryIterator::getInode() example

This example displays the inode number for the directory containing the script.

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));
echo 
$iterator->getInode();
?>

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)