xunsearch使用namespace后bug修复
Posted cxchanpin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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修复的主要内容,如果未能解决你的问题,请参考以下文章