Count Set Bits

Count the number of set bits (1s) in a number's binary representation.

Code

General
substr_count(decbin($n), '1');

Parameters

Number

Server

More PHP Snippets