君山 发表于 2020-11-9 17:21:37

Discuz getstatus函数 取得某标志位的数值 (0|1)


/**
* 取得某标志位的数值 (0|1)
*
* @param 数值 $status
* @param 位置 $position
* @return 0 | 1
*/
function getstatus($status, $position) {
        $t = $status & pow(2, $position - 1) ? 1 : 0;
        return $t;
}
页: [1]
查看完整版本: Discuz getstatus函数 取得某标志位的数值 (0|1)