gmp_popcount(3) php man page | unix.com

Man Page: gmp_popcount

Operating Environment: php

Section: 3

GMP_POPCOUNT(3) 							 1							   GMP_POPCOUNT(3)

gmp_popcount - Population count

SYNOPSIS
int gmp_popcount (GMP $a)
DESCRIPTION
Get the population count.
PARAMETERS
o $a -Either a GMP number resource in PHP 5.5 and earlier, a GMP object in PHP 5.6 and later, or a numeric string provided that it is possible to convert the latter to a number.
RETURN VALUES
The population count of $a, as an integer.
EXAMPLES
Example #1 gmp_popcount(3) example <?php $pop1 = gmp_init("10000101", 2); // 3 1's echo gmp_popcount($pop1) . " "; $pop2 = gmp_init("11111110", 2); // 7 1's echo gmp_popcount($pop2) . " "; ?> The above example will output: 3 7 PHP Documentation Group GMP_POPCOUNT(3)
Related Man Pages
dechex(3) - php
gmp_clrbit(3) - php
gmp_div_qr(3) - php
gmp_hamdist(3) - php
gmp_random(3) - php
Similar Topics in the Unix Linux Community
UNIX.COM 2017 Year End Summary
New Code Tags (Syntax Highlighting)
Status of UNIX.COM Forum Transformation
Please Welcome Ravinder Singh to the Moderation Team
Denial Of Service Attack Update