PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

filesize> <fileowner
Last updated: Mon, 26 Nov 2007

view this page in

fileperms

(PHP 4, PHP 5)

fileperms — 取得文件的权限

说明

int fileperms ( string $filename )

返回文件的访问权限,如果出错则返回 FALSE

Note: 本函数的结果会被缓存。更多信息参见 clearstatcache()

Tip

PHP 5.0.0 起本函数也可被某些 URL wrapper 使用。参考支持的协议/封装协议列表 来看哪些 wrapper 支持 stat() 系列函数的功能。

Example#1 以八进制的形式显示文件的权限

<?php
echo substr(sprintf('%o'fileperms('/tmp')), -4);
echo 
substr(sprintf('%o'fileperms('/etc/passwd')), -4);
?>

上例的输出类似于:

1777
0644

Example#2 输出全部权限

<?php
$perms 
fileperms('/etc/passwd');

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' '-'));

echo 
$info;
?>

上例的输出类似于:

-rw-r--r--

参见 is_readable()stat()



filesize> <fileowner
Last updated: Mon, 26 Nov 2007
 
add a note add a note User Contributed Notes
fileperms
Newba
12-Mar-2008 04:15
Congratulations! looks like php.net stole your example LOL
AsakuraStar
23-Sep-2007 08:49
If you need a function to return perms in format like (rwx etc)
You can you use this code:

function GetFilePerms($file) {
    $perms = fileperms($file);
    if (($perms & 0xC000) == 0xC000) {$info = 's'; } // Socket
    elseif (($perms & 0xA000) == 0xA000) {$info = 'l'; } // Symbolic Link
    elseif (($perms & 0x8000) == 0x8000) {$info = '-'; } // Regular
    elseif (($perms & 0x6000) == 0x6000) {$info = 'b'; } // Block special
    elseif (($perms & 0x4000) == 0x4000) {$info = 'd'; } // Directory
    elseif (($perms & 0x2000) == 0x2000) {$info = 'c'; } // Character special
    elseif (($perms & 0x1000) == 0x1000) {$info = 'p'; } // FIFO pipe
    else {$info = '?';} // Unknown
    // 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;
}

//Usage mode:
//echo GetFilePerms("path/to/your/file");
eelco
10-Jul-2007 05:21
If you only want the permissions (lowest three octal numbers) you can use a bitwise AND to mask the bits:

<?php
fileperms
($file) & 511;
?>
paul2712 at gmail dot com
03-Jun-2007 12:08
Do not forget: clearstatcache();
==============================
 
When ever you make a:

mkdir($dstdir, 0770 ))

or a:

chmod($dstdir, 0774 );

You have to call:

clearstatcache();

before you can call:

fileperms($dstdir);
chinello at gmail dot com
25-Apr-2007 12:43
On Linux (not tested on Windows), if you want a chmod-like permissions, you can use this function:

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

   
$perms = fileperms($file);

   
$cut = $octal ? 2 : 3;

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

Using it:

$ touch foo.bar
$ chmod 0754 foo.bar
<?php
echo file_perms('foo.bar'); // prints: 754
echo file_perms('foo.bar', true); // prints 0754
?>

filesize> <fileowner
Last updated: Mon, 26 Nov 2007
 
 
show source | credits | sitemap | contact | advertising | mirror sites