...ieldMeta getField(mixed $name, bool $throw=true) $name mixed 字段名称(string) 或字段序号(vno, int) $throw bool 当字段不存在时是否抛出异常, 默认为 true {return} XSFieldMeta 字段元数据对象 源码: sdk/php/lib/XS.class.php#L514 (显示) publi...
... public string getAddIndex(string $field) $field string 字段名称 {return} string 文本内容, 若无则返回 null 源码: sdk/php/lib/XSDocument.class.php#L221 (显示) public function getAddIndex($field){ $field = strval($field); if ($this->_texts === null || !...
场景: 一个产品名称A,他可能有B、C、D三个别名。数据库中别名是存在另外一个数据表中的,有B、C、D三条记录,对应到产品A上。对于索引的话,我之前用的solr 它有个字段multiValued="true"支持。不知道迅搜怎么做?
... 方法 public bool __isset(string $name) $name string 属性名称 {return} bool 若存在为 true, 反之为 false 源码: sdk/php/lib/XS.class.php#L221 (显示) public function __isset($name){ return method_exists($this, 'get' . $name);} 魔术方法 __isset 判...
... public static void autoload(string $name) $name string 类的名称 源码: sdk/php/lib/XS.class.php#L533 (显示) public static function autoload($name){ $file = XS_LIB_ROOT . '/' . $name . '.class.php'; if (file_exists($file)) { require_once $file; }} 智能...
...d __construct(string $name, array $config=NULL) $name string 字段名称 $config array 可选参数, 初始化字段各项配置 源码: sdk/php/lib/XSFieldScheme.class.php#L298 (显示) public function __construct($name, $config = null){ $this->name = strval($name); if (...
...数据库源 Protected 属性 隐去继承来的属性 名称类型描述定义于 arg XSDataSource inCli XSDataSource type XSDataSource Public 方法 隐去继承来的方法 名称描述定义于 __construct() 构...
...重建,我该怎么写呢? 假设我的项目project.name = wangnan 名称是wangnan 如果这样写: util/Indexer.php --rebuild xxxToXunSearch --project=wangnan 会好使么 ,由于是线上的 ,我不敢试验啊。 求 highman 解答。3Q
... 方法 public mixed __get(string $name) $name string 字段名称 {return} mixed 字段值, 若不存在返回 null 源码: sdk/php/lib/XSDocument.class.php#L79 (显示) public function __get($name){ if (!isset($this->_data[$name])) { return null; } retur...