📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-29 01:39:42
📂
/
/
opt
/
alt
/
tests
/
alt-php83-pecl-bitset_3.2.0-1.el8
/
tests
✏️
Editing: BitSet_fromRawValue.phpt
--TEST-- BitSet BitSet::fromRawValue() - Verifies the provided input raw value is represented in set bits --SKIPIF-- <?php if (!extension_loaded('bitset')) die('skipping missing extension'); ?> --FILE-- <?php $b = BitSet::fromRawValue(base64_decode('AA==')); var_dump($b->__toString()); $b = BitSet::fromRawValue(base64_decode('IA==')); var_dump($b->__toString()); var_dump(base64_encode($b->getRawValue())); ?> --EXPECT-- string(8) "00000000" string(8) "00000100" string(4) "IA=="
💾 Save Changes
❌ Cancel