function file_perms($file, $octal = false)
{
if(!file_exists($file)) return false;

$perms = fileperms($file);

$cut = $octal ? 2 : 3;

return substr(decoct($perms), $cut);
}

echo file_perms('index.htm');             // prints: 754
echo file_perms('index.htm', true);    // prints 0754

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 stockwfj3 的頭像
    stockwfj3

    程式設計@筆記

    stockwfj3 發表在 痞客邦 留言(0) 人氣()