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);前加一行php


$name = __NAMESPACE__ . '\\' . $name;

至此問題解決
相關文章
相關標籤/搜索