XSSearch 搜索对象 通过 [XSSearch] 对象实现各种搜索相关操作。实现使用过程中并不需要自行创建该对象, 而是直接访问 [XS::search] 即可。 ~~~ [php] require '$prefix/sdk/php/lib/XS.php'; $xs = new XS('demo'); $search = $xs->search; // 搜索...
...All Packages | 方法(函数) 包 XS.util 继承关系 class XSUtil 版本 1.0.0 源代码 sdk/php/util/XSUtil.class.php XSUtil 工具程序通用代码 Public 方法 隐去继承来的方法 名称描述定义于 convertIn() 把用户输...
... 初始化完毕的数据源对象 源码: sdk/php/util/XSDataSource.class.php#L44 (显示) public static function instance($type, $arg = null){ $type2 = ($pos = strpos($type, ':')) ? 'database' : $type; $class = 'XS' . ucfirst(strtolower($type2)) . 'DataSource'; if (!class_exists($c...
...$file string 要加载的项目配置文件 源码: sdk/php/lib/XS.class.php#L284 (显示) public function __construct($file){ if (strlen($file) < 255 && !is_file($file)) { $appRoot = getenv('XS_APP_ROOT'); if ($appRoot === false) { $appRoot = defined('XS_APP_ROO...
...x() {return} XSIndex 索引操作对象 源码: sdk/php/lib/XS.class.php#L406 (显示) public function getIndex(){ if ($this->_index === null) { $adds = array(); $conn = isset($this->_config['server.index']) ? $this->_config['server.index'] : 8383; if (($pos = st...
require_once 'xunsearch/lib/XS.php'; $xs = new XS('demo'); var_dump($xs); //到这里是正常的 $doc = new MyDocument; // Class 'MyDocument' not found 肯定没有这个类啊 我该怎么操作呢
...ackages | 方法(函数) 包 XS.tokenizer 继承关系 class XSTokenizerNone 实现接口 XSTokenizer 版本 1.0.0 源代码 sdk/php/lib/XSTokenizer.class.php 内置空分词器 Public 方法 隐去继承来的方法 名称描述定义于...
...ackages | 方法(函数) 包 XS.tokenizer 继承关系 class XSTokenizerFull 实现接口 XSTokenizer 版本 1.0.0 源代码 sdk/php/lib/XSTokenizer.class.php 内置整值分词器 Public 方法 隐去继承来的方法 名称描述定义...
...All Packages | 方法(函数) 包 XS.util 继承关系 class XSDebugFilter 实现接口 XSDataFilter 版本 1.0.0 源代码 sdk/php/util/XSDataSource.class.php 内置调试过滤器, 直接打印数据内容 Public 方法 隐去继承来的方法 ...
...() {return} XSSearch 搜索操作对象 源码: sdk/php/lib/XS.class.php#L431 (显示) public function getSearch(){ if ($this->_search === null) { $conns = array(); if (!isset($this->_config['server.search'])) { $conns[] = 8384; } else { for...