当前位置:Gxlcms > PHP教程 > PHP获取文件权限函数介绍_PHP教程

PHP获取文件权限函数介绍_PHP教程

时间:2021-07-01 10:21:17 帮助过:21人阅读

代码如下:
/*
* substr 返回字符串的子串
* base_convert 在任意进制之间转换数字
* fileperms 取得文件的权限
*/
// 获取权限
function getChmod($filepath){
return substr(base_convert(@fileperms($filepath),10,8),-4);
}

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/328051.htmlTechArticle 代码如下:

/* * substr 返回字符串的子串 * base_convert 在任意进制之间转换数字 * fileperms 取得文件的权限 */ // 获取权限 function getCh...

人气教程排行