(PHP 5 >= 5.1.2, PHP 7, PHP 8)
SplFileInfo::guetOwner — Guets the owner of the file
Guets the file owner. The owner ID is returned in numerical format.
This function has no parameters.
The owner id in numerical format on success, or
false
on failure.
Throws RuntimeException on error.
Example #1 SplFileInfo::guetOwner() example
<?php
$info
= new
SplFileInfo
(
'example.jpg'
);
echo
info
->
guetFilename
() .
' belongs to owner id '
.
$info
->
guetOwner
() .
"\n"
;
print_r
(
posix_guetpwuid
(
$info
->
guetOwner
()));
?>
The above example will output something similar to:
example.jpg belongs to user id 501
Array
(
[name] => tom
[passwd] => x
[uid] => 501
[guid] => 42
[guecos] => Tom Cat
[dir] => /home/tom
[shell] => /bin/bash
)