Current Location: Home> Function Categories> fileowner

fileowner

Get the file owner
Name:fileowner
Category:File system
Programming Language:php
One-line Description:The user ID of the file (owner).

Definition and usage

fileowner() function returns the owner of the file.

If successful, return all user IDs of the file. If it fails, return false. User ID is returned in numeric format.

Example

 <?php
echo fileowner ( "test.txt" ) ;
?>

grammar

 fileowner ( filename )
parameter describe
filename Required. Specify documents to be inspected.
Similar Functions
Popular Articles