在线文档教程

gmp_scan0

gmp_scan0

(PHP 4 >= 4.0.4, PHP 5, PHP 7)

gmp_scan0 - 扫描0

描述

int gmp_scan0 ( GMP $a , int $start )

a从位开始扫描start更多有效位,直到找到第一个清除位。

参数

a

要扫描的号码。

可以是PHP 5.5及更早版本中的GMP编号资源,PHP 5.6及更高版本中的GMP对象,也可以是数字字符串,前提是可以将后者转换为数字。

start

起始位。

返回值

以整数形式返回找到的位的索引。索引从0开始。

例子

示例#1 gmp_scan0()示例

<?php // "0" bit is found at position 3. index starts at 0 $s1 = gmp_init("10111", 2 echo gmp_scan0($s1, 0) . "\n"; // "0" bit is found at position 7. index starts at 5 $s2 = gmp_init("101110000", 2 echo gmp_scan0($s2, 5) . "\n"; ?>

上面的例子将输出:

3 7

← gmp_rootrem

gmp_scan1 →