搜索

大约有 153 项符合查询结果, 库内数据总量为 3,513 项。 (搜索耗时:0.2952秒)

71.XSDatabaseSQLite::connect

...on connect($param){ if (($this->link = sqlite_open($param['path'])) === false) { throw new XSException("Can not open sqlite file: '{$param['path']}'"); }} 打开数据库

72.XSServer::getConnString

...)) { $str = 'localhost:' . $str; } elseif (strpos($str, ':') === false) { $str = 'unix://' . $str; } return $str;}

73.XSFieldScheme::getFieldBody

...FieldMeta::TYPE_BODY]; return $this->_fields[$name]; } return false;} 获取内容字段元数据

74.XSFieldScheme::getFieldId

...XSFieldMeta::TYPE_ID]; return $this->_fields[$name]; } return false;} 获取主键字段元数据

75.使用自定义词库的时候,部分词会丢失

更新时间:2014-04-18 17:04 t By tianly

...ws/etc/rules.utf8.ini'); //分词前去掉标点符号 $so->set_ignore(false); //是否复式分割,如“中国人”返回“中国+人+中国人”三个词。 $so->set_multi(false); //设定将文字自动以二字分词法聚合 $so->set_duality(true); //要进行分词的语句 ...

76.XSFieldMeta::isSpeical

...public bool isSpeical() {return} bool 是返回 true, 不是返回 false 源码: sdk/php/lib/XSFieldScheme.class.php#L367 (显示) public function isSpeical(){ return ($this->type == self::TYPE_ID || $this->type == self::TYPE_TITLE || $this->type == self::TYPE_BODY);} 判断当...

77.XSTokenizerScws::setIgnore

...] = new XSCommand(XS_CMD_SEARCH_SCWS_SET, XS_CMD_SCWS_SET_IGNORE, $yes === false ? 0 : 1); return $this;} 设置忽略标点符号

78.XSComponent::__isset

... string 属性名称 {return} bool 若存在为 true, 反之为 false 源码: sdk/php/lib/XS.class.php#L221 (显示) public function __isset($name){ return method_exists($this, 'get' . $name);} 魔术方法 __isset 判断模拟属性是否存在并可读取

79.XSCsvDataSource

...on getDataList(){ if (($item = fgetcsv($this->fd, 0, $this->delim)) === false) { if ($this->inCli) { echo "INFO: reach end of file or error occured, total lines: " . $this->line . "\n"; } return false; } $this->line++; if (count($item) === 1 && is_null($it...

80.RE: XSTokenizerScws的一个使用问题

发布时间:2013-01-30 14:01 t By hightman

...+”中国“ 你的问题必须是 [code] $tk = $tokenizer->setDuality(false)->setIgnore(true)->setMulti(11)->getResult("是一"); [/code]

  • 时间不限
  • 按相关性排序