GMP 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程

gmp_testbit

(PHP 5 >= 5.3.0)

gmp_testbitTests if a bit is set

说明

bool gmp_testbit ( resource $a , int $index )

Tests if the specified bit is set.

参数

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.

index

The bit to test

返回值

如果成功则返回 TRUE,失败则返回 FALSE

错误/异常

E_WARNING is issued when index is less than zero.

范例

Example #1 gmp_testbit() example

<?php
$n 
gmp_init("1000000");
var_dump(gmp_testbit($n1));
gmp_setbit($n1);
var_dump(gmp_testbit($n1));
?>

上例将输出:

bool(false)
bool(true)

参见


GMP 函数
php 手册 | 脚本学堂 | 脚本编程 | 网站编程 | 系统管理 | 服务器配置 | 数据库管理 | Php教程 | python教程 | 正则表达式 | 批处理脚本 | Centos教程 | Linux基础教程