posix_getuid

(PHP 4, PHP 5, PHP 7, PHP 8)

posix_getuidRetorna o ID do usuário real do processo atual

Descrição

posix_getuid(): int

Retorna o ID numérico real do usuário do processo atual.

Parâmetros

Esta função não possui parâmetros.

Valor Retornado

Retorna o ID do usuário, como um int

Exemplos

Exemplo #1 Exemplo de uso de posix_getuid()

<?php
echo posix_getuid(); //10000
?>

Veja Também

  • posix_getpwuid() - Retorna informações sobre um usuário por ID de usuário
  • Página GETUID(2) do manual POSIX

adicione uma nota

Notas Enviadas por Usuários (em inglês) 3 notes

up
3
chris at ocportal dot com
16 years ago
Note that this function is not defined on Windows PHP.
up
1
dee at earlsoft dot co dot uk
3 years ago
On more modern systems the posix functions have split out into the php-process packageInstalled PackagesName         : php-processVersion      : 7.2.24Release      : 1.module_el8.2.0+313+b04d0a66Architecture : x86_64Size         : 100 kSource       : php-7.2.24-1.module_el8.2.0+313+b04d0a66.src.rpmRepository   : @SystemFrom repo    : appstreamSummary      : Modules for PHP script using system process interfacesURL          : http://www.php.net/License      : PHPDescription  : The php-process package contains dynamic shared objects which add             : support to PHP using system interfaces for inter-process             : communication.
up
0
StanE
9 years ago
None of the posix_* functions are available under Windows, since Windows is not POSIX compliant. But there seems to be / was an optional software package available, see here: https://en.wikipedia.org/wiki/Microsoft_POSIX_subsystem
To Top