SplFileInfo::getOwner
(PHP 5 >= 5.1.2)
SplFileInfo::getOwner — Gets the owner of the file
Описание
public int SplFileInfo::getOwner
( void
)
Список параметров
This function has no parameters.
Возвращаемые значения
The owner id in numerical format.
Errors/Exceptions
Throws RuntimeException on error.
Примеры
Пример #1 SplFileInfo::getOwner() example
<?php
$info = new SplFileInfo('file.txt');
print_r(posix_getpwuid($info->getOwner()));
?>