PHP | fileperms( ) Function
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 // file permissions are displayed // using fileperms() function echo fileperms("gfg.txt"); ?> |
Output:
33206
Program 2:
<?php // file permissions are displayed in // octal format using fileperms() function echo substr(sprintf("%o", fileperms("gfg.txt")), -4); ?> |
Output:
0644
Reference:
http://php.net/manual/en/function.fileperms.php
Recommended Posts:
- How to call a function that return another function in JavaScript ?
- How to get the function name inside a function in PHP ?
- How to get the function name from within that function using JavaScript ?
- PHP | Ds\Map last() Function
- PHP | Ds\Map map() Function
- p5.js | hex() function
- PHP | end() Function
- CSS | hsl() Function
- p5.js | nfp() Function
- PHP | pow( ) Function
- D3.js | d3.hcl() Function
- PHP | next() Function
- PHP | Ds\Set contains() Function
- CSS | var() Function
- PHP | Ds\Set xor() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



