mirror of
https://github.com/php/pecl-numbers-bitset.git
synced 2026-03-23 23:42:23 +01:00
35 lines
713 B
Plaintext
35 lines
713 B
Plaintext
BITSET
|
|
Released under the PHP License 3.01
|
|
|
|
The BitSet extension assists by providing a mechanism to manage sets of bits.
|
|
This provides a similar API (object-based) to java.util.BitSet with some
|
|
PHP-specific flavoring.
|
|
|
|
|
|
IMPORTANT
|
|
---------
|
|
Versions 3.0 and higher of this extension require PHP 7+
|
|
|
|
|
|
COMPILATION
|
|
-----------
|
|
|
|
- Uncompress the tarball or clone the git repository
|
|
- Run phpize
|
|
- Run ./configure [--enable-bitset]
|
|
- Run make, then make install.
|
|
- Add the extension loading directive to your php.ini
|
|
extension=bitset.so
|
|
|
|
|
|
INSTALLATION FROM PECL
|
|
----------------------
|
|
|
|
- pecl install bitset
|
|
|
|
|
|
REPORTING BUGS
|
|
--------------
|
|
|
|
Please report all bugs at https://github.com/php/pecl-numbers-bitset/issues
|