Bitwise operations in PHP?

前端 未结 2 1669
盖世英雄少女心
盖世英雄少女心 2020-11-29 23:34

I understand that bitwise operations are necessary for much low-level programming, such as writing device drivers, low-level graphics, communications protocol packet assembl

2条回答
  •  甜味超标
    2020-11-30 00:06

    Bitwise operations are extremely useful in credentials information. For example:

    function is_moderator($credentials)
    { return $credentials & 4; }
    
    function is_admin($credentials)
    { return $credentials & 8; }
    

    and so on...

    This way, we can keep a simple integer in one database column to have all credentials in the system.

提交回复
热议问题