DirectoryIterator
PHP Manual

DirectoryIterator::getOwner

(PHP 5 >= 5.0.2)

DirectoryIterator::getOwnerGet owner of current DirectoryIterator item

Описание

public int DirectoryIterator::getOwner ( void )

Get the owner of the current DirectoryIterator item, in numerical format.

Список параметров

This function has no parameters.

Возвращаемые значения

The file owner of the file, in numerical format.

Примеры

Пример #1 DirectoryIterator::getOwner example

This example displays the owner of the directory which contains the script.

<?php
$iterator 
= new DirectoryIterator(dirname(__FILE__));
print_r(posix_getpwuid($iterator->getOwner()));
?>

Результатом выполнения данного примера будет что-то подобное:

Array
(
    [name] => tom
    [passwd] => x
    [uid] => 501
    [gid] => 42
    [gecos] => Tom Cat
    [dir] => /home/tom
    [shell] => /bin/bash
)

Смотрите также


DirectoryIterator
PHP Manual