SplFileInfo::getOwner

(PHP 5 >= 5.1.2, PHP 7)

SplFileInfo::getOwnerGets the owner of the file

설명

public int SplFileInfo::getOwner ( void )

Gets the file owner. The owner ID is returned in numerical format.

인수

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

반환값

The owner id in numerical format.

오류/예외

Throws RuntimeException on error.

예제

Example #1 SplFileInfo::getOwner() example

<?php
$info 
= new SplFileInfo('file.txt');
print_r(posix_getpwuid($info->getOwner()));
?>

참고

add a note add a note

User Contributed Notes

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