DirectoryIterator::getInode

(PHP 5, PHP 7)

DirectoryIterator::getInodeGet inode for the current DirectoryIterator item

Descrierea

public DirectoryIterator::getInode ( void ) : int

Get the inode number for the current DirectoryIterator item.

Parametri

Această funcție nu are parametri.

Valorile întoarse

Returns the inode number for the file.

Exemple

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

A se vedea și