PHP | fileperms( ) Function (original) (raw)
Last Updated : 05 May, 2018
The fileperms() function in PHP is an inbuilt function which is used to return the permissions given to a file or a directory. The filename of the file whose permissions have to be checked is sent as a parameter to the function and it returns the permissions given to the file in the form of numbers on success and False on failure.
The result of the fileperms() function is cached and a function called clearstatcache() is used to clear the cache.
Syntax:
fileperms($filename)
Parameters: The fileperms() function in PHP accepts one parameter $filename. It specifies the filename of the file whose permissions you want to check.
Return Value: It returns the permissions given to the file in the form of numbers on success and False on failure.
Errors And Exception:
- clearstatcache() function needs to be called everytime before calling fileperms() function if mkdir() or chmod() functions have been used prior to fileperms() function.
- The buffer must be cleared if the fileperms() function is used multiple times.
- The fileperms() function emits an E_WARNING in case of a failure.
Examples:
Input : fileperms("gfg.txt"); Output : 33206
Input : substr(sprintf("%o", fileperms("gfg.txt")), -4); Output : 0644
Below programs illustrate the fileperms() function.
Program 1:
<?php
echo
fileperms
(
"gfg.txt"
);
?>
Output:
33206
Program 2:
<?php
echo
substr
(sprintf(
"%o"
,
fileperms
(
"gfg.txt"
)), -4);
?>
Output:
0644