(PHP 5, PHP 7)
DirectoryIterator::getInode — Get inode for the current DirectoryIterator item
public DirectoryIterator::getInode ( ) : int
Get the inode number for the current DirectoryIterator item.
This function has no parameters.
Returns the inode number for the file.
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(); ?>
© 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