(PHP 5, PHP 7)
Get inode for the current DirectoryIterator item
public int DirectoryIterator::getInode ( void )
Get the inode number for the current DirectoryIterator item.
Returns:
Returns the inode number for the file.
Examples:
DirectoryIterator::getInode() example
This example displays the inode number for the directory containing the script.
1 2 3 4 | <?php $iterator = new DirectoryIterator(dirname( __FILE__ )); echo $iterator ->getInode(); ?> |
See also:
DirectoryIterator::getGroup() -
DirectoryIterator::getOwner() -
Please login to continue.