PHP | SplFileInfo getOwner() Function Last Updated : 05 Nov, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The SplFileInfo::getOwner() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the owner of the file. The owner ID is returns in the numerical format. Syntax: int SplFileInfo::getOwner( void ) Parameters: The function does not accept any parameter. Return Value: This function returns the owner ID in numerical form. Below programs illustrate the SplFileInfo::getOwner() function in PHP: Program 1: PHP <?php // PHP Program to illustrate // Splfileinfo::getOwner() function // Create new SPlFileInfo Object $file = new SplFileInfo('gfg.txt'); // Print result print_r(posix_getpwuid($file->getOwner())); ?> Output: Array ( [name] => root [passwd] => x [uid] => 0 [gid] => 0 [gecos] => root [dir] => /root [shell][/shell] => /bin/bash ) Program 2: php <?php // PHP Program to illustrate // Splfileinfo::getOwner() function // Create new SPlFileInfo Object $file = new SplFileInfo(__FILE__); // Print result print_r(posix_getpwuid($file->getOwner())); ?> Output: Array ( [name] => www-data [passwd] => x [uid] => 33 [gid] => 33 [gecos] => www-data [dir] => /var/www [shell][/shell] => /usr/sbin/nologin ) Reference: http://php.net/manual/en/splfileinfo.getowner.php Comment More infoAdvertise with us Next Article PHP | SplFileInfo getInode() Function R R_Raj Follow Improve Article Tags : PHP PHP-function PHP-SplFileInfo Similar Reads PHP | SplFileInfo getPerms() Function The SplFileInfo::getPerms() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the permission of the file. Syntax: int SplFileInfo::getPerms( void ) Parameters: This function does not accept any parameter. Return values: This function returns the permission of 1 min read PHP | SplFileInfo getInode() Function The SplFileInfo::getInode() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the inode number for the filesystem object. Syntax: int SplFileInfo::getInode( void) Parameters: This function does not accept any parameter. Return Value: This function returns inod 1 min read PHP | SplFileInfo getType() Function The SplFileInfo::getType() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the file type. Syntax: string SplFileInfo::getType( void ) Parameters: This function does not accept any parameter. Return values: This function returns the type of file i.e. link, di 1 min read PHP | SplFileInfo getSize( ) Function The SplFileInfo::getSize() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get file size in bytes. Syntax: int SplFileInfo::getSize( void ) Parameters: This function does not accept any parameter. Return values: This function returns the size of file in bytes. B 1 min read PHP | SplFileInfo getATime() Function The SplFileInfo::getATime() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get the last access time of the file. Syntax: int SplFileInfo::getATime( void ) Parameters: This function does not accept any parameter. Return Value: This function returns the last acce 1 min read PHP | SplFileInfo getMTime() Function The SplFileInfo::getMTime() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to return the last modified time. The returned time in Unix timestamp. Syntax: int SplFileInfo::getMTime( void ) Parameters: This function does not accept any parameter. Return Value: This 1 min read Like