| 123456789101112131415161718192021222324 |
- <?php
- namespace tw\redis;
- /**
- * redis 操作基类
- *
- * Base HashTrait StringTrait HsetTrait
- * |
- * |
- * DerivedClass (use a Trait)
- *
- * DerivedClass 属于一个类型的键
- */
- abstract class Base
- {
- /**
- * 虚函数,返回键
- * @param integer|string $word: 组成键的关键部分
- * @return string
- */
- abstract protected function key($word = false): string;
- }
|