當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


PHP SplFileInfo getOwner()用法及代碼示例


SplFileInfo::getOwner()函數是PHP中的標準PHP庫(SPL)的內置函數,用於獲取文件的所有者。所有者ID以數字格式返回。

用法:

int SplFileInfo::getOwner( void )

參數:該函數不接受任何參數。


返回值:此函數以數字形式返回所有者ID。

以下示例程序旨在說明PHP中的SplFileInfo::getOwner()函數:

程序1:

<?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())); 
   
?>

輸出:

Array ( 
    [name] => root 
    [passwd] => x 
    [uid] => 0 
    [gid] => 0 
    [gecos] => root 
    [dir] => /root 
     => /bin/bash 
)

程序2:

<?php 
  
// PHP Program to illustrate  
// Splfileinfo::getOwner() function 
   
// Create new SPlFileInfo Object 
$file = new SplFileInfo(__FILE__); 
   
// Print result 
print_r(posix_getpwuid($file->getOwner())); 
   
?>
輸出:
Array
(
    [name] => www-data
    [passwd] => x
    [uid] => 33
    [gid] => 33
    [gecos] => www-data
    [dir] => /var/www
     => /usr/sbin/nologin
)

參考:http://php.net/manual/en/splfileinfo.getowner.php



相關用法


注:本文由純淨天空篩選整理自R_Raj大神的英文原創作品 PHP | SplFileInfo getOwner() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。