DirectoryIterator::getInode

(PHP 5, PHP 7, PHP 8)

DirectoryIterator::getInodeGet inode for the current DirectoryIterator item

說明

public DirectoryIterator::getInode(): int

Get the inode number for the current DirectoryIterator item.

參數(shù)

此函數(shù)沒有參數(shù)。

返回值

Returns the inode number for the file.

范例

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

參見