php中位元運算的用法介紹

怪我咯
發布: 2023-03-10 21:32:02
原創
1809 人瀏覽過

php位元運算在php中不常用到,但作用是相當大的,下面我們來介紹一下php位元運算用法。

  • $a & $b and(位元與)

  • $a | $b or(位元或)

  • $a ^ $b Xor(位元異或)

  • #~$a Not(位元非)

  • $a << $b Shift left(左移)

  • $a >> $b Shift right(右移)

詳解
$a & $b 位元與把$a和$b中都為1的位元設為1;

例:10 & 12 = 8
登入後複製

10 1010
12 1100
1000 8
$a | $b 按位或把$a或$b中有一個為1的為設為1;
例:10 | 12 = 14
10 1010
12 1100
1110 14
$a ^ $b 按位異或
例:10 ^ 12
10 1010
12 1100
0110 6
~a 按位非把$a中的為0的為設為1,1的為設為0
例:~10 =
10 1010 10101 - 11
$a << $b 左移把$a中的為向左移動$b次(每一次移動都表示乘以​​2);
例:1 << 10 = 1024
1(1) 左移10位10000000000(1024)
相當於1*2的10次方,php中沒有冪運算真是鬱悶。
$a >> $b 右移把$a中的為向右移動$b次(每一次移動都表示除以2);
例:1024 << 2 = 1256
10000000000(1024) 右移2位元就是100000000(256)
php為運算$a & $b and(位元與)$a | $b or(位元或)$a ^ $b Xor(按位異或)~$a Not(位元非)$a << $b Shift left(左移)$a >> $b Shift right(右移)
詳解$a & $ b 按位與把$a和$b中都為1的位元設為1;例:10 & 12 = 810 101012 1100 1000 8
$a | $b 按位或把$a或$b中有一個為1的為設為1;例:10 | 12 = 1410 101012 1100 1110 14
$a ^ $b 按位異或例:10 ^ 1210 101012 1100 0110 6##~a $a中的為0的為設為1,1的為設為0例:~10 = 10 1010 11111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111111122$移動$b次(每一次移動都表示乘以​​2);例:1 << 10 = 10241(1) 左移10位10000000000(1024)相當於1*2的10次方,php中沒有冪運算真是鬱悶。
$a >> $b 右移把$a中的為向右移動$b次(每一次移動都表示除以2);例:1024 << 2 = 125610000000000(1024) 右移2位元就是100000000(256)


標誌位元欄位與

位元運算子
的結合

PHP裡的

error_reporting
的參數值清單

    1 E_ERROR
  • 2 E_WARNING
  • 4 E_PARSE
  • 8 E_NOTICE
  • #16 E_CORE_ERROR



  • #32 E_CORE_WARNING


  • 64 E_COMPILE_ERROR


  • 128 E_COMPILE_WARNING

  • #128 E_COMPILE_WARNING

  • 128 E_COMPILE_WARNING


  • 128 E_COMPILE_WARNING

  • ##256 E_

    USER_ERROR

  • #512 E_USER_WARNING

#1024 E_USER_NOTICE




#2047 E_ALL




#2048 E_STRICT


4096 E_RECOVERABLE_ERROR

發現value的值都是跳躍式的吧,而且全是2的n+1次方.

再看下面這個。把value的值轉成二進位了。


value constant
0000 0001 E_ERROR
0000 0010 E_WARNING0000 0100 E_PARSE0000 1000 E_NOTICE
0001 0000$0000 1000 E_NOTICE
0001 0000 # #.
.
… …一次為每加一次方就是二進位加了一位(學過電腦的差不多都知道:)…)
注意:每個選項對應了一位(1為開啟0為關閉)

好了,下面我們來看看這麼設定參數的好處。

舉三個參數為例來看是什麼效果吧

error_reporting(3);//decbin(3) == 0000 0011; (相当于设置 E_WARNING 和 E_ERROR )
error_reporting(4);//decbin(4) == 0000 0100;(相当于设置 E_PARSE )
error_reporting(5);//decbin(5) == 0000 0101;(相当于设置 E_PARSE 和 E_ERROR)
登入後複製

取得設定:###要看某項是否開啟的判斷可以用位元運算來獲得(& — 「與」規則全1為1,否則為0)######//E_PARSE###if($n & 4){###//E_PARSE開啟###//4的二進位是0100,因為只有第3位是1,所以進行”&”操作時###其它###何位置全被置0了###//因此只有$n的第三位也是1時結果才會大於0。 ###//如4(0100),5(0101),6(0110),7(0111)###}else{###//E_PARSE關閉###//第三位為0了就代表此選項是關閉狀態###}######改變設定:($n代表目前的十進位值)######在應用程式時我們可能跟據需要針對某位進行開關設定。 ###看下面的用法。 ###

//Close the E_PARSE item and use the ‘&’ “AND” rule
$n = $n&(8192-4-1);
//Why use 8191?
//This has something to do with the number of options you have. This error display mark uses a total of 13 bits (the binary number of 4096 is 13 bits), while 8192 is (14 bits).
//Why subtract 4 and subtract 1 Woolen cloth?
//8192-4-1=8187. (1111111111011) The binary number is 13 digits, which is the same as the maximum number of digits we use. And the corresponding value in the third bit is 0.
//Use this number to perform a bitwise AND operation with any number between 1 and 4096. Except for the third bit, which will be set to 0, the values ​​of other bits will not change? "AND" rule:)
//Similarly, if you want to turn off E_WARNING
//$n = $n&(8192-2-1);

//To turn on the E_PARSE item, use ' |'"or" rule
$n = $n|4;
//After reading the above closing, you may have some ideas about opening:)
// '|' — "or" rule If there is 1, it is 1, otherwise it is 0
//The above is the case where all bits are 1, it does not affect other bits, now it becomes the case where all bits are 0, it will not affect other bits:)
// So we only need to set the corresponding value of the binary bit of the subsequent operand to 1, and all other bits to 0 will be OK.
//Did you find it? It happens to be the decimal value corresponding to each of our setting items:


以上是php中位元運算的用法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!