DirectoryIterator::getInode

(PHP 5, PHP 7)

DirectoryIterator::getInodeGet inode for the current DirectoryIterator item

설명

public int DirectoryIterator::getInode ( void )

Get the inode number for the current DirectoryIterator item.

인수

이 함수는 인수가 없습니다.

반환값

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

참고

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top