在线文档教程

gmp_scan1

gmp_scan1

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

gmp_scan1 - 扫描1

描述

int gmp_scan1 ( GMP $a , int $start )

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

参数

a

要扫描的号码。

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

start

起始位。

返回值

以整数形式返回找到的位的索引。如果未找到设置位,则返回-1。

例子

示例#1 gmp_scan1()示例

<?php // "1" bit is found at position 3. index starts at 0 $s1 = gmp_init("01000", 2 echo gmp_scan1($s1, 0) . "\n"; // "1" bit is found at position 9. index starts at 5 $s2 = gmp_init("01000001111", 2 echo gmp_scan1($s2, 5) . "\n"; ?>

上面的例子将输出:

3 9

← gmp_scan0

gmp_setbit →