06/04/2021, 14:46
Hàm fileowner() trong PHP - PHP Function
Code $filename = 'index.php'; print_r(posix_getpwuid(fileowner($filename)));
Hàm fileowner()
sẽ trả về user sở hữu file truyền vào.
Cú pháp
Cú pháp: fileowner( $filename);
Trong đó:
$filename
là đường dẫn tới file cần kiểm tra.
Kết quả trả về
Hàm sẽ trả về ID của user sở hữu file được truyền vào. Nếu chạy thất bại, hàm sẽ trả về False.
Ví dụ
Ví dụ mình lấy tại trang chủ php.net, lưu ý các hàm posix không hỗ trợ cho hệ điều hành window.
Code
$filename = 'index.php'; print_r(posix_getpwuid(fileowner($filename)));
Tham khảo: php.net
Nguồn: Zaidap.com.net