Small note: the function resolves symbolic links. That is, if the link is created by user 999 and maps to a file owned by user 666, this function returns 666 :(
(PHP 4, PHP 5, PHP 7, PHP 8)
fileowner — ファイルの所有者を取得する
filename
ファイルへのパス。
ファイルの所有者のユーザー ID を返し、失敗した場合に false
を返します。
ユーザー ID は数値で返されます。ユーザー名に変換するには
posix_getpwuid() を使用してください。
失敗したときは E_WARNING
が発生します。
例1 ファイルの所有者の取得
<?php
$filename = 'index.php';
print_r(posix_getpwuid(fileowner($filename)));
?>
注意: この関数の結果は キャッシュされます。詳細は、clearstatcache() を参照してください。
PHP 5.0.0
以降、この関数は、
何らかの URL ラッパーと組合せて使用することができます。
どのラッパーが stat() ファミリーをサポートしているかを調べるには
サポートするプロトコル/ラッパー を参照してください。
Small note: the function resolves symbolic links. That is, if the link is created by user 999 and maps to a file owned by user 666, this function returns 666 :(
Remember to use if(fileowner(...) === FALSE) instead of if(!fileowner()) or if(fileowner() == FLASE) because if the owner was "root" it would return 0.
This function will always return 0 on Windows, because Windows does not support numeric user IDs.