Home > Article > Backend Development > 10 recommended articles about the php fileperms() function
The code is as follows:/* * substr returns the substring of the string * base_convert converts numbers between any bases * fileperms obtains the permissions of the file */// obtains the permissions function getChmod($filepath){ return substr(base_convert( @fileperms($filepath),10,8),-4);} http://www.bkjia.com/PHPjc/328051.htmlwww.bkjia.comtruehttp://www.bkjia.com/PHPjc/328051.htmlTechArticle copy code The code is as follows: /* * substr returns the substring of the string * base_convert Convert numbers between arbitrary bases* filepe
1. Introduction to PHP Get File Permissions Function_PHP Tutorial
Introduction: Introduction to PHP function to obtain file permissions. Copy the code as follows: /* * substr returns the substring of the string * base_convert converts numbers between arbitrary bases * fileperms obtains the permissions of the file */ // obtains the permissions function getCh
2. php related system functions_PHP tutorial
Introduction: php related system functions. get_current_user () Get the name of the owner of the current PHP script substr(sprintf(%o,fileperms(getcwd())),-4) Get the current file/directory permissions scandir(getcwd()) Get all the current directory
3. php related system functions
Introduction: php related system functions. get_current_user () Get the name of the owner of the current PHP script substr(sprintf(%o,fileperms(getcwd())),-4) Get the current file/directory permissions scandir(getcwd()) Get all the current directory
4. PHP obtains read and write permissions for files or folders
Introduction: Welcome to the Linux Community Forum, with 2 million technologies Personnel interaction >> Enter this article to share a function that can obtain server-side files or file read and write permissions. I hope it will be helpful to everyone. PHP function: ?php function file_permission($filename){ $perms = fileperms($filename); if (($perms 0xC000)
The above is the detailed content of 10 recommended articles about the php fileperms() function. For more information, please follow other related articles on the PHP Chinese website!