PHPZip\Zip\Core\ZipUtils::clrBit PHP Method

clrBit() public static method

public static clrBit ( &$data, $bit )
    public static function clrBit(&$data, $bit) {
        $data &= ~(1 << $bit);
    }