Forum und email

gmp_popcount

(PHP 4 >= 4.0.4, PHP 5)

gmp_popcount — セットされているビットの数

説明

int gmp_popcount ( resource $a )

セットされているビットの数を返します。

パラメータ

a

It can be either a GMP number resource, or a numeric string given that it is possible to convert the latter to a number.

返り値

a にセットされているビットの数を返します。

Example#1 gmp_popcount() の例

<?php
$pop1 
gmp_init("10000101"2); // 1 が 3 つ
echo gmp_popcount($pop1) . "\n";
$pop2 gmp_init("11111110"2); // 1 が 7 つ
echo gmp_popcount($pop2) . "\n";
?>

上の例の出力は以下となります。

3
7