复制代码代次如下:
function perms_str($perms){
if (($perms & 0xC000) == 0xC000) {
// ソケット
$info = 's';
} elseif (($perms & 0xA000) == 0xA000) {
// シンボリックリンク
$info = 'l';
} elseif (($perms & 0x8000) == 0x8000) {
// 通常
$info = '-';
} elseif (($perms & 0x6000) == 0x6000) {
// 特殊なブロック
$info = 'b';
} elseif (($perms & 0x4000) == 0x4000) {
// ディレクトリ
$info = 'd';
} elseif (($perms & 0x2000) == 0x2000) {
// 特殊な文字
$info = 'c';
} elseif (($perms & 0x1000) == 0x1000) {
// FIFO パイプ
$info = 'p';
} else {
// 不明
$info = 'u';
}
// 所有者
$info .= (($perms & 0x0100) ? 'r' : '-');
$info .= (($perms & 0x0080) ? 'w' : '-');
$info .= (($perms & 0x0040) ?
(($perms & 0x0800) ? 's' : 'x' ) :
(($perms & 0x0800) ? 'S' : );
// グループ
$info .= (($perms & 0x0020) ? 'r' : '-');
$info .= (($perms & 0x0010) ? 'w' : '-');
$info .= (($perms & 0x0008) ?
(($perms & 0x0400) ? 's' : 'x' ) :
(($perms & 0x0400) ? 'S' : );
// 世界
$info .= (($perms & 0x0004) ? 'r' : '-');
$info .= (($perms & 0x0002) ? 'w' : '-');
$info .= (($perms & 0x0001) ?
(($perms & 0x0200) ? 't' : 'x' ) :
(($perms & 0x0200) ? 'T' : );
$info を返します。
}
以上、term を介して php が fileterms 関数を返した結果は、term に関する内容を含む、閲覧可能な形式になっており、PHP 教則に関心のある友人の助けになることが望ましいです。