SplFileInfo::getOwner

(PHP 5 >= 5.1.2, PHP 7, PHP 8)

SplFileInfo::getOwnerGets the owner of the file

說明

public SplFileInfo::getOwner(): int|false

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

參數

此函數沒有參數。

返回值

The owner id in numerical format on success, or false on failure.

錯誤/異常

Throws RuntimeException on error.

范例

示例 #1 SplFileInfo::getOwner() example

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

參見