Open In App

PHP fileowner() Function

Last Updated : 24 Apr, 2025
Comments
Improve
Suggest changes
Like Article
Like
Report

The fileowner() is an inbuilt function in PHP that returns the details for the file owner.

Syntax:

fileowner(string $filename): int|false

Parameters: This function accepts a single parameter:

  • filename: This parameter specifies the file path for the specific file.

Name of the file.

Return Value: The user id of the owner will be returned by this function in case of true, otherwise, false on failure. The user id will be returned in numerical format. The posix_getpwuid() function will be used in order to resolve it to a username.

Error: An E_WARNING will be emitted, upon failure.

Example 1: The following code demonstrates the fileowner() function.

PHP

<?php
   $filename = "text.txt" ;
   print_r(posix_getpwuid(fileowner($filename)));
?>

                    

Output:

Array
(
   [name] => dachman
   [passwd] => x
   [uid] => 1000
   [gid] => 1000
   [gecos] => dachman,,,
   [dir] => /home/dachman
    => /usr/bin/zsh
)
 

Example 2: The following code demonstrates the fileowner() function.

PHP

<?php
   $filename = "text.txt" ;
   print_r(fileowner($filename));
?>

                    

Output:

1000

Reference: https://www.php.net/manual/en/function.fileowner.php



Next Article

Similar Reads