gksh/bitmask
Composer 安装命令:
composer require gksh/bitmask
包简介
A bitmask value object for PHP
README 文档
README
gksh/bitmask
A simple way to use bitmask and bitwise operations in PHP.
Installation
Requires PHP 8.2+
composer require gksh/bitmask
Usage
Streamline flag handling by encoding boolean options into simple integers through bitmasking.
Please see ide.php for full example and playground for more.
use Gksh\Bitmask\Bitmask; enum Panel: int { case Project = 1; case Terminal = 2; case SourceControl = 4; case Extensions = 8; } class Ide { public Bitmask $panels; public function __construct() { $this->panels = Bitmask::tiny(); // 8-bit } public function togglePanel(Panel $panel): self { $this->panels = $this->panels->toggle($panel); return $this; } } $ide = (new Ide()) ->togglePanel(Panel::Project) ->togglePanel(Panel::Terminal); $ide->panels->has(Panel::Terminal); // true $ide->panels->has(Panel::Extensions); // false
Features
- Immutable: Operations return new instances, original unchanged
- Enum support: Pass
BackedEnumdirectly — no->valueextraction needed - Size variants:
tiny()(8-bit),small()(16-bit),medium()(24-bit),make()(32-bit default)
Factory Methods
Bitmask::make() // 32-bit (default) Bitmask::tiny() // 8-bit, for TINYINT columns Bitmask::small() // 16-bit, for SMALLINT columns Bitmask::medium() // 24-bit, for MEDIUMINT columns
Operations
$mask = Bitmask::tiny() ->set(Flag::A) // Set a flag ->unset(Flag::B) // Unset a flag ->toggle(Flag::C); // Toggle a flag $mask->has(Flag::A); // Check if flag is set $mask->value(); // Get integer value $mask->size(); // Get Size enum
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Credits
License
The MIT License (MIT). Please see License File for more information.
gksh/bitmask 适用场景与选型建议
gksh/bitmask 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 65 次下载、GitHub Stars 达 7, 最近一次更新时间为 2024 年 05 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「bitfield」 「binary」 「bitmask」 「bitwise」 「bit flags」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 gksh/bitmask 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 gksh/bitmask 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 gksh/bitmask 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Map an array of options to a binary bitfield as a string or integer, and back again.
A PHP Framework that allows you to encode and decode arbitrary ASN.1 structures using the ITU-T X.690 Encoding Rules.
Bit I/O library
Alfabank REST API integration
A set of tools to build binary drivers
A set of tools to build binary drivers
统计信息
- 总下载量: 65
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 26
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2024-05-03