PHP uses bitwise operations to manage website permissions

Source: Internet
Author: User
It becomes easy to understand the processing of these two permissions, as long as the user's current total permission value and the permissions required for the current operation are bitwise and computed each time a permission operation is executed. If the result is true, you can handle false errors. (of course, you can design a program without permission) first, we define four constants to set four permissions:
========================================================== ======================
Define (ADD, 1); // ADD the database record permission
Define (UPD, 2); // modify database record permissions
Define (SEL, 4); // permission for searching database records
Define (DEL, 8); // permission for deleting database records
========================================================== ======================
Assume that there are three users:
A user has four permissions for the ADD-UPD-SEL-DEL, using A bit or operation to calculate the total permissions of
$ A_all = ADD | UPD | SEL | DEL; // $ all = 15 you can note that the value and the result of the addition method are the same.
B user has three permissions for ADD-UPD-SEL, with a bit or calculation of B's total permissions
$ B _all = ADD | UPD | SEL; // $ all = 7 the addition result is the same.
C user has two permissions for ADD-UPD, calculate the total permissions of C with a bit or operation
$ C_all = ADD | UPD; // $ all = 3. the value and addition result are the same.
========================================================== ======================
Next we use bitwise AND for calculation
$ A_all & ADD returns true
$ A_all & UPD returns true
$ A_all & SEL returns true
$ A_all & DEL returns true
========================================================== ======================
$ B _all & ADD returns true
$ B _all & UPD: The result is true.
$ B _all & SEL returns true
$ B _all & DEL: The result is false.
========================================================== ======================
$ C_all & ADD returns true
$ C_all & UPD returns true
$ C_all & SEL results are false
$ C_all & DEL: The result is false.
========================================================== ======================
Discover the mysteries?
1. when the total number of permissions and the permissions that are not available are bitwise and computed, the result is false.
2. the permission value is the power of 2.
It becomes easy to understand the processing of these two permissions, as long as the user's current total permission value and the permissions required for the current operation are bitwise and computed each time a permission operation is executed. If the result is true, you only need to handle false errors (of course, you can design programs without permission ).

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.