get_current_user () 獲取當前PHP腳本的所有者的名稱
substr(sprintf("%o",fileperms(getcwd())),-4) 獲取當前文件/目錄權限
scandir(getcwd()) 獲取當前目錄所有文件/目錄
print_r(posix_getpwuid(10000)); 獲取某uid用戶信息
chmod("test.txt",0777); 修改指定文件 或目錄權限
fileowner() 函數返回文件的所有者。
php_uname() 獲取系統類型及版本
getmyuid() 獲取PHP腳本頁面所有者的UID號碼
print_r (ini_get_all()); 獲取所有配置選項
print_r (php_ini_scanned_files()); 返回配置文件目錄下的配置文件列表
$uid = @posix_getpwuid(@posix_geteuid()); 獲取當前用UID 信息
$gid = @posix_getgrgid(@posix_getegid()); 獲取當前組GID 信息
$user = $uid['name']; 提取用戶信息數組中 name
$uid = $uid['uid']; 提取當前用戶信息數組中 uid
$group = $gid['name']; 提取當前組信息數組中 name
$gid = $gid['gid']; 提取當前組信息中 gid
摘自:lostwolf's Blog