SplFileInfo
PHP Manual

SplFileInfo::getOwner

(PHP 5 >= 5.1.2)

SplFileInfo::getOwnerGets the owner of the file

Descrizione

public int SplFileInfo::getOwner ( void )

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

Elenco dei parametri

Questa funzione non contiene parametri.

Valori restituiti

The owner id in numerical format.

Errori/Eccezioni

Throws RuntimeException on error.

Esempi

Example #1 SplFileInfo::getOwner() example

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

Vedere anche:


SplFileInfo
PHP Manual