码迷,mamicode.com
首页 > 其他好文 > 详细

xunsearch使用namespace后bug修复

时间:2017-05-01 16:07:52      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:article   ica   height   padding   解决   name   space   函数调用   部分   

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修复

标签:article   ica   height   padding   解决   name   space   函数调用   部分   

原文地址:http://www.cnblogs.com/cxchanpin/p/6791973.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!