posix_getuid

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

posix_getuid現在のプロセスの実際のユーザー ID を返す

説明

posix_getuid(): int

現在のプロセスの実際のユーザー ID を返します。

パラメータ

この関数にはパラメータはありません。

返り値

ID を表す整数値を返します。

例1 posix_getuid() の使用例

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

参考

  • posix_getpwuid() - 指定 ID のユーザーに関する情報を返す
  • POSIX man ページ GETUID(2)

add a note add a note

User Contributed Notes 2 notes

up
1
StanE
8 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
up
1
chris at ocportal dot com
15 years ago
Note that this function is not defined on Windows PHP.
To Top