Term PHP Converts the results returned by the fileterms function into a readable form

Source: Internet
Author: User
Copy CodeThe code is as follows:


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;
}

The above describes the term PHP will return the results of the fileterms function into a readable form, including the term aspects of the content, I hope to be interested in the PHP tutorial friends helpful.

  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.