php常用功能封装-redis

  • A+
所属分类:阁主小札
class RedisPro extends Redis
{
    public function __construct()
    {
        parent::__construct();
        $this->connect("127.0.0.1", "6379"); //一般而言
        //$this->auth(''); //若设置了密码则需要此句
    }

    public function checkData($key)
    {
        return $this->exists($key);
    }
    public function setData($key, $arr) //$arr可以是除资源外的任意php变量 ,$key是键名

    {
        $this->set($key, serialize($arr), 3600); //3600是存活秒数,若不需要,则不设置

    }
    public function getData($key)
    {
        return unserialize($this->get($key));
    }
    public function delData($key)
    {
        $this->del($key);
    }
}

weinxin
画麟阁QQ群
这是一个有爱的大家庭,也是东阁唯一的社区,快来和大家一起闲聊、讨论吧!
谷雨

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: