update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets the owner of the file

SplFileInfo::getOwner

(PHP 5 >= 5.1.2)

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

참고