...使用 $prefix/sdk/php/app/demo.ini 作项目配置文件 $xs = new XS('/path/to/demo.ini'); // 使用 /path/to/demo.ini ~~~ > note: 自 v1.4.9 起,可以通过定义常量 XS_APP_ROOT 或设置这个环境变量来改变默认项目配置目录。 重要属性 -------- * [XS::defaultCharset] ...
... $param = array('scheme' => substr($this->type, 0, $pos)); $param['path'] = substr($this->type, $pos + (substr($this->type, $pos + 1, 2) === '//' ? 3 : 1)); } elseif (!($param = parse_url($this->type))) { throw new XSException('Wrong format of DB connection parameter'); } else {...
... require() [function.require]: Failed opening required './XS.php' (include_path='.:/www/wdlinux/nginx_php-5.2.17/lib/php') in /www/web/torrentkittys/public_html/index2.php on line 2 代码修改过程: 在当前目录下添加了一个XS.php软连接到/usr/local/xunsearch/sdk/php/lib/XS.php...
配置文件不是问题啊, new XS('/path/to/file.ini'); 也可以的,XS 构造函数允许传入路径、文件内容都可以呢。
...blic void connect(array $param) $param array 连接参数, 包含: path 源码: sdk/php/util/XSDataSource.class.php#L699 (显示) public function connect($param){ if (($this->link = sqlite_open($param['path'])) === false) { throw new XSException("Can not open sqlite file: '{$p...
...的,我看了下论坛里以前的错误,是在 $xs = new XS(VENDOR_PATH.'sdk/php/app/'.$xs_config); $search = $xs->search; 下加上 $search->setTimeout(0);//设置链接不超时 但是加了后问题依旧,麻烦请帮看看是哪的问题!
...blic void connect(array $param) $param array 连接参数, 包含: path 源码: sdk/php/util/XSDataSource.class.php#L756 (显示) public function connect($param){ try { $this->obj = new SQLite3($param['path'], SQLITE3_OPEN_READONLY); } catch (Exception $e) { throw ne...
...如有必要,请通过常量 XS_APP_ROOT 定义 define ('XS_APP_ROOT', '/path/to/ini') // 创建 XS 对象,关于项目配置文件请参见官网 $xs = new \XS('demo'); // 后面的代码就和官网上的指南一致了 ``` ### Yii-1.x 用法 这是对 xunsearch 的一个简单封装,使...