(PHP 4 >= 4.0.4, PHP 5, PHP 7, PHP 8)
gmp_scan0 — 扫描 0
返回找到位的索引,为一个 int。索引从 0 开始。
范例 #1 gmp_scan0() 范例
<?php
// "0" 位在位置 3 处找到。索引从 0 开始
$s1 = gmp_init("10111", 2);
echo gmp_scan0($s1, 0) . "\n";
// "0" 位在位置 7 处找到。索引从 5 开始
$s2 = gmp_init("101110000", 2);
echo gmp_scan0($s2, 5) . "\n";
?>
以上示例将输出
3 7