...ng $arg=NULL) $arg string 复合等级参数,默认不指定 源码: sdk/php/lib/XSTokenizer.class.php#L188 (显示) public function __construct($arg = null){ if (self::$_server === null) { $xs = XS::getLastXS(); if ($xs === null) { throw new XSException('A...
...错的文件。[hr] 为了在C++ Builder下编译成动态链接库,对源码做了以下处理: 1、xtree.c里,对qsort的调用做了以下处理: #ifdef __BORLANDC__ static int _xtree_node_cmp(const void *a,const void *b) { return strcmp((*((node_t *)a))->key,(*((node_t *)b))->key);...
...ring 转换前的字符集 {return} mixed 转换后的数据 源码: sdk/php/lib/XS.class.php#L550 (显示) public static function convert($data, $to, $from){ // need not convert if ($to == $from) { return $data; } // array traverse if (is_array($data)) { ...
...一下怎么做的?我搜索论坛,也没找到想要的答案。这个源码编译出来是什么类型的文件都不知道……
... 最大值为 20 {return} array 返回搜索词组成的数组 源码: sdk/php/lib/XSSearch.class.php#L707 (显示) public function getRelatedQuery($query = null, $limit = 6){ $ret = array(); $limit = max(1, min(20, intval($limit))); // Simple to disable query with field filter...
connect() 方法 protected void connect() 源码: sdk/php/lib/XSServer.class.php#L452 (显示) protected function connect(){ // connect to server $conn = $this->_conn; if (is_int($conn) || is_numeric($conn)) { $host = 'localhost'; $port = intval($conn); } elseif...
...照着官方的说明,安装比较顺利。 然后下载官方DEMO(源码另存为)来运行的时候,分词结果不对,不明其中原因。 DEMO:http://www.ftphp.com/scws/demo/v48.php 输入的文本也是官方DEMO一样的,分词结果如下: ~~~~~~~~~~~~~~~~~~~~~~~~...
... 2GB $buf1 string 字符串内容1, 最大长度为 255字节 源码: sdk/php/lib/XSServer.class.php#L62 (显示) public function __construct($cmd, $arg1 = 0, $arg2 = 0, $buf = '', $buf1 = ''){ if (is_array($cmd)) { foreach ($cmd as $key => $value) { if ($key === 'a...
...ray 当 $field 参数为 string 时作为新建字段的配置内容 源码: sdk/php/lib/XSFieldScheme.class.php#L139 (显示) public function addField($field, $config = null){ if (!$field instanceof XSFieldMeta) { $field = new XSFieldMeta($field, $config); } if (isset($this->...
...数数组,未指定 - 开头的选项统一放入 '-' 的子数组 源码: sdk/php/util/XSUtil.class.php#L108 (显示) public static function parseOpt($valued = array()){ $result = array('-' => array()); $params = isset($_SERVER['argv']) ? $_SERVER['argv'] : array(); for ($i = 0; $i ...