... (显示) public function hasIndexMixed(){ return ($this->flag & self::FLAG_INDEX_MIXED) ? true : false;} 判断当前字段是否需要在混合区索引
... $str .= "index = both\n"; } } elseif ($index === self::FLAG_INDEX_MIXED) { $str .= "index = mixed\n"; } else { if ($this->type !== self::TYPE_ID) { $str .= "index = self\n"; } } } // tokenizer if ($this->type ...
... (显示) public function hasIndexMixed(){ return ($this->flag & self::FLAG_INDEX_MIXED) ? true : false;} 判断当前字段是否需要在混合区索引 hasIndexSelf() 方法 public bool hasIndexSelf() {return} bool 若需要返回 true, 不需要则返回 false 源...