DirectoryIterator::getInode

(PHP 5, PHP 7, PHP 8)

DirectoryIterator::getInodeGet inode for the current DirectoryIterator item

Beschreibung

public DirectoryIterator::getInode ( ) : int

Get the inode number for the current DirectoryIterator item.

Parameter-Liste

Diese Funktion besitzt 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

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top