熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> PHP編程 >> 正文

PHP 獲取文件權限函數介紹

2022-06-13   來源: PHP編程 
以下是對PHP中的獲取文件權限函數進行了介紹需要的朋友可以參考下   復制代碼 代碼如下:

  
/*
 * substr 返回字符串的子串
 * base_convert  在任意進制之間轉換數字
 * fileperms  取得文件的權限
 */
// 獲取權限
function getChmod($filepath){
    return substr(base_convert(@fileperms($filepath)));
}


From:http://tw.wingwit.com/Article/program/PHP/201311/21119.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.