-
Notifications
You must be signed in to change notification settings - Fork 6
shooyaaa/php_bitmap
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
A php version bitmap extension install: phpize ./configure --enable-php_bitmap make make install usage: $foo = new PhpBitmap(); $foo->setBit(1); $foo->setBit(100); $foo->getBit(1); echo $foo->dumpBit(); var_export($foo->getBytes()); You can init bits from string too. $foo = new PhpBitmap('a'); $foo->dumpBit();