PHP中使用BigMap实例,PHP使用BigMap实例_PHP教程
程序员文章站
2022-05-24 21:47:21
...
PHP中使用BigMap实例,PHP使用BigMap实例
>SHIFT 这里相当于 intval($i /32) ; // $i & $this->mask 这里相当于 $i % $this->mask ,取余 @$this->bitArray[$i >> $this->shift] &= ~(1mask)); } /** $i 对应的数致1 */ function setbit($i){ @$this->bitArray[$i >> $this->shift] |= (1mask)); } //test 测试所在的bit为是否为1 function testbit($i){ return $this->bitArray[$i >> $this->shift] & (1mask)); } } $oBig = new bigMap() ; $oBig->setbit(30) ; var_dump($oBig->testbit(2)) ; var_dump($oBig->bitArray) ; echo decbin($oBig->bitArray[0]),"
";