当前位置: 网学 > 编程文档 > PHP > 正文

php将fileterms函数返回的结果变成可读的形式

来源:Http://myeducs.cn 联系QQ:点击这里给我发消息 作者: 用户投稿 来源: 网络 发布时间: 13/06/21

鉴于大家对PHP十分关注,我们编辑小组在此为大家搜集整理了“php将fileterms函数返回的结果变成可读的形式”一文,供大家参考学习

复制代码 代码如下:
function perms_str($perms){
if (($perms & 0xC000) == 0xC000) {
// Socket
$info = ''s'';
} elseif (($perms & 0xA000) == 0xA000) {
// Symbolic Link
$info = ''l'';
} elseif (($perms & 0x8000) == 0x8000) {
// Regular
$info = ''-'';
} elseif (($perms & 0x6000) == 0x6000) {
// Block special
$info = ''b'';
} elseif (($perms & 0x4000) == 0x4000) {
// Directory
$info = ''d'';
} elseif (($perms & 0x2000) == 0x2000) {
// Character special
$info = ''c'';
} elseif (($perms & 0x1000) == 0x1000) {
// FIFO pipe
$info = ''p'';
} else {
// Unknown
$info = ''u'';
}

// Owner
$info .= (($perms & 0x0100) ? ''r'' : ''-'');
$info .= (($perms & 0x0080) ? ''w'' : ''-'');
$info .= (($perms & 0x0040) ?
(($perms & 0x0800) ? ''s'' : ''x'' ) :
(($perms & 0x0800) ? ''S'' : ''-''));

// Group
$info .= (($perms & 0x0020) ? ''r'' : ''-'');
$info .= (($perms & 0x0010) ? ''w'' : ''-'');
$info .= (($perms & 0x0008) ?
(($perms & 0x0400) ? ''s'' : ''x'' ) :
(($perms & 0x0400) ? ''S'' : ''-''));

// World
$info .= (($perms & 0x0004) ? ''r'' : ''-'');
$info .= (($perms & 0x0002) ? ''w'' : ''-'');
$info .= (($perms & 0x0001) ?
(($perms & 0x0200) ? ''t'' : ''x'' ) :
(($perms & 0x0200) ? ''T'' : ''-''));

return $info;
}

网学推荐

免费论文

原创论文

浏览:
设为首页 | 加入收藏 | 论文首页 | 论文专题 | 设计下载 | 网学软件 | 论文模板 | 论文资源 | 程序设计 | 关于网学 | 站内搜索 | 网学留言 | 友情链接 | 资料中心
版权所有 QQ:3710167 邮箱:3710167@qq.com 网学网 [Myeducs.cn] 您电脑的分辨率是 像素
Copyright 2008-2015 myeducs.Cn www.myeducs.Cn All Rights Reserved
湘ICP备09003080号