DirectoryIterator::getInode

(PHP 5, PHP 7)

DirectoryIterator::getInodeGet inode for the current DirectoryIterator item

Description

public DirectoryIterator::getInode ( ) : int

Get the inode number for the current DirectoryIterator item.

Parameters

This function has no parameters.

Return Values

Returns the inode number for the file.

Examples

Example #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();
?>

See Also

© 1997–2020 The PHP Documentation Group
Licensed under the Creative Commons Attribution License v3.0 or later.
https://www.php.net/manual/en/directoryiterator.getinode.php