搜索

大约有 24 项符合查询结果, 库内数据总量为 3,513 项。 (搜索耗时:0.2923秒)

1.XSFieldMeta::getCustomTokenizer

...irst($this->tokenizer); $arg = null; } if (!class_exists($name)) { $file = $name . '.class.php'; if (file_exists($file)) { require_once $file; } else if (file_exists(XS_LIB_ROOT . DIRECTORY_SEPARATOR . $file)) { ...

2.XSComponent

...) public function __get($name){ $getter = 'get' . $name; if (method_exists($this, $getter)) { return $this->$getter(); } // throw exception $msg = method_exists($this, 'set' . $name) ? 'Write-only' : 'Undefined'; $msg .= ' property: ' . get_class($this) . '::$' . $name; ...

3.XSComponent::__get

...) public function __get($name){ $getter = 'get' . $name; if (method_exists($this, $getter)) { return $this->$getter(); } // throw exception $msg = method_exists($this, 'set' . $name) ? 'Write-only' : 'Undefined'; $msg .= ' property: ' . get_class($this) . '::$' . $name; ...

4.XSComponent::__set

...c function __set($name, $value){ $setter = 'set' . $name; if (method_exists($this, $setter)) { return $this->$setter($value); } // throw exception $msg = method_exists($this, 'get' . $name) ? 'Read-only' : 'Undefined'; $msg .= ' property: ' . get_class($this) . '::$' . $name...

5.XSFieldScheme::getField

... if ($throw === true) { throw new XSException('Not exists field with vno: `' . $name . '\''); } return false; } $name = $this->_vnoMap[$name]; } if (!isset($this->_fields[$name])) { if ($throw === true) { throw new X...

6.特苦恼,今天想给xdb加词使劲报错。感谢帮忙看看

更新时间:2013-08-24 01:08 t By 一只死菜鸟

不停的报这个错。ERROR: output xdb file exists:后面是文件名 是从网站上面下载的XDB导入导出工具 起初我以为是我改的txt格式不对还是怎么的 后来我直接将xdb导出成txt,如下 php E:\www\dump_xdb_file.php E:\www\dict.xdb E:\www\1.txt 成功导...

7.XS::convert

...xfe]/', $data)) { // mbstring, iconv, throw ... if (function_exists('mb_convert_encoding')) { return mb_convert_encoding($data, $to, $from); } elseif (function_exists('iconv')) { return iconv($from, $to . '//TRANSLIT', $data); } else { thr...

8.安装报错,谁能帮忙看看

发布时间:2014-05-08 17:05 t By solomon

.../local/xunsearch/etc" || /bin/mkdir -p "/usr/local/xunsearch/etc" Ignore exists custom data file 'etc/dict_user.txt' Ignore exists custom data file 'etc/stopwords.txt' make[2]: *** [install-customDATA] Error 1 make[2]: Leaving directory `/home/www/software/xunsearch-full-1.4.8/xunsearch-1.4.8'...

9.XSIndex::flushIndex 强制刷新出错啊!

发布时间:2012-07-05 10:07 t By xinjing3836

直接XSIndex::flushIndex 就提示 Fatal error: Undefined class constant 'flushIndex' XSIndex::flushIndex()就提示Method "execCommand" does not exist and was not trapped in __call() 求解决哈!

10.XSComponent::__isset

....class.php#L221 (显示) public function __isset($name){ return method_exists($this, 'get' . $name);} 魔术方法 __isset 判断模拟属性是否存在并可读取

123
  • 时间不限
  • 按相关性排序