首页 > 代码库 > xunsearch使用namespace后bug修复
xunsearch使用namespace后bug修复
xunsearch在使用了namespace后会出现不能正常使用
错误例如以下:
Fatal error:
Uncaught [vendors\xunsearch\lib\XSException] ../vendors/xunsearch/lib/XS.php(972): Undefined custom tokenizer `full‘ for field
解决方法例如以下:
找到XS.php文件里的public function getCustomTokenizer()改动当中的class_exists函数调用等部分例如以下
if (!class_exists( __NAMESPACE__
. ‘\\‘ . $name)) {
在$obj = $arg === null ?
new $name : new $name($arg);前加一行
$name = __NAMESPACE__ . ‘\\‘
. $name;
至此问题解决
xunsearch使用namespace后bug修复
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。