DirectoryIterator::getOwner

(PHP 5)

DirectoryIterator::getOwnerGet owner of current DirectoryIterator item

Опис

public int DirectoryIterator::getOwner ( void )

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

Параметри

В цієї функції немає параметрів.

Значення, що повертаються

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
)

Прогляньте Також

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top