12345678910111213141516171819 |
- <?php
- namespace Common\Server;
- class XSServer
- {
- public $XS; //XS对象
- public $XSDocument; //XSDocument对象
- /**
- * 初始化
- * @param string $ini 配置名称
- */
- public function __construct($ini){
- require_once '/usr/local/xunsearch/sdk/php/lib/XS.php';
- $this->XS = new \XS($ini); // 自动使用 $prefix/sdk/php/app/{$ini}.ini 作项目配置文件
- $this->XSDocument = new \XSDocument;
- }
- }
|