|
posix_getpwuid(PHP 4, PHP 5) posix_getpwuid — Return info about a user by user id Описание
array posix_getpwuid
( int $uid
)
Returns an array of information about the user referenced by the given user ID. Список параметров
Возвращаемые значенияReturns an associative array with the following elements:
Примеры
Пример #1 Example use of posix_getpwuid()
<?php Результатом выполнения данного примера будет что-то подобное: Array ( [name] => tom [passwd] => x [uid] => 10000 [gid] => 42 [geocs] => "tom,,," [dir] => "/home/tom" [shell] => "/bin/bash" ) |
|||||||||||||||||