Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,914 questions

51,847 answers

573 users

How to set specific bits and find the set bits indexes in PHP

1 Answer

0 votes
define('BIT_SIZE', 16);

// Function to print binary representation of the bits
function printBinary(int $bits): void {
    for ($i = BIT_SIZE - 1; $i >= 0; $i--) {
        echo ($bits >> $i) & 1;
    }
    echo PHP_EOL;
}

function findFirstSetBit(int $bits): int {
    for ($i = 0; $i < BIT_SIZE; $i++) {
        if (($bits >> $i) & 1) {
            return $i;
        }
    }
    return -1; // No bits set
}

function printSetBitIndexes(int $bits): void {
    for ($i = 0; $i < BIT_SIZE; $i++) {
        if (($bits >> $i) & 1) {
            echo $i . ' ';
        }
    }
    echo PHP_EOL;
}

$bits = 0;
$bits |= (1 << 3);
$bits |= (1 << 5);
$bits |= (1 << 11);
$bits |= (1 << 14);

printBinary($bits);

echo "First set bit at index: " . findFirstSetBit($bits) . PHP_EOL;

echo "All the set bits indexes:" . PHP_EOL;
printSetBitIndexes($bits);

  
  
/*
run:
    
0100100000101000
First set bit at index: 3
All the set bits indexes:
3 5 11 14 

*/

 



answered Nov 3, 2025 by avibootz

Related questions

1 answer 49 views
1 answer 40 views
1 answer 120 views
...