gisostallenberg/bitwise-constant-calculator

计算一系列常量进行位运算的值

1.0.0 2017-02-22 15:12 UTC

This package is auto-updated.

Last update: 2024-09-24 04:40:30 UTC


README

计算一系列常量进行位运算的值

安装

composer require gisostallenberg/bitwise-constant-calculator

使用示例

use GisoStallenberg\BitwiseConstantCalculator\BitwiseConstantCalculator;

$result = BitwiseConstantCalculator::create()
            ->calculate("E_ALL | E_STRICT");
($result === E_ALL | E_STRICT); // true