欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【thinkphp5操作redis系列教程】字符串类型之setBit,getBit

程序员文章站 2022-07-05 20:37:20
...
<?php
namespace app\index\controller;
use Redis;
class Index
{
    public function index()
    {
        $redis = new Redis();
        $redis->connect('127.0.0.1',6379);

        // setBit() 设置字符串偏移量上的位(bit)
        // getBit() 获取字符串偏移量上的位(bit)
        $redis->set('key', "\x7f"); // this is 0111 1111
        echo $redis->getBit('key', 0); // 0
        echo $redis->getBit('key', 1); //1
        echo $redis->setBit('key', 5, 1); // 1



    }





}