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 — Obtiene el propietario de un archivo
filename
Ruta del archivo.
Devuelve el ID de usuario del propietario del archivo, o false
en caso de error.
El ID de usuario es devuelto en formato numérico, use
posix_getpwuid() para resolverlo a un nombre de usuario.
Ejemplo #1 Encontrar el propietario de un archivo
<?php
$nombre_archivo = 'index.php';
print_r(posix_getpwuid(fileowner($nombre_archivo)));
?>
En caso de fallo, se emite un E_WARNING
.
Nota: Los resultados de esta función son guardados en caché. Para más información ver clearstatcache().
Desde PHP 5.0.0, esta función también puede usarse con algunos URL wrappers. Consultar Protocolos y Envolturas soportados para deter4minar qué envolturas soportan la familia de funcionalidad de 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.