Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7905305
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T10:25:44+00:00 2026-06-03T10:25:44+00:00

I saw in school a system that set permissions using binary string. Let’s say

  • 0

I saw in school a system that set permissions using binary string.

Let’s say 101001 = 41

So :

  • 1 can be permission to page 1
  • 2 can be permission to page 2
  • 4 can be permission to page 3
  • 8 can be permission to page 4
  • 16 can be permission to page 5
  • 32 can be permission to page 6

So let’s say I got the above binary string (101001). I have access to page 1, 4 and 6.

How can I do this in PHP ? Let’s say I got a field in MySQL named perms stored in dec so 101001 will be 41. How can I know that 41 is equal to 1, 8 and 32 in PHP ?

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T10:25:45+00:00Added an answer on June 3, 2026 at 10:25 am

    Sounds like you’re talking about bits and bit-wise operators. This easiest way to set this up is to define constants for every permission

    const POST   = 1;
    const DELETE = 2;
    const UPDATE = 4;
    const READ   = 8;
    

    Once you have these defined it’s easy to make comparisons using the bitwise operators:

    $userValue = '1101';
    
    if ($userValue & self::POST) {
      echo 'Can Post';
    }
    
    if ($userValue & self::DELETE) {
      echo 'Can Delete';
    }
    
    if ($userValue & self::UPDATE) {
      echo 'Can Update';
    }
    
    if ($userValue & self::READ) {
      echo 'Can Read';
    }
    

    This is how many of PHP’s own constants work. If you’ve ever set the error reporting using something like E_ALL & E_DEPRECATED you’re actually working with binary numbers.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I saw a cool style/js function (I can tell what it is) that implemented
I saw that there are two ways to set a responsePage in Wicket's WebPage:
I'm a little curious about some of the code that I saw at school
I saw that even by writing separate commands, we can combine two different types
I saw this in a part that never gets called in a coworker's code:
I saw in some image processing software, we can specify color key color, usally
I saw other posts but still can't get my background image to scale correctly.
Saw the code here . Can any one tell me what it means? Action
Saw this post at CodeProject for FCKEditor. Can someone explain what about the new
I saw that programmatically turning bluetooth on and off was a private api thing

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.