[问题]修复Node读取部分丢失的BUG

This commit is contained in:
邹景立 2017-03-17 14:35:40 +08:00
parent d7f0ce3408
commit 5a41a72611

View File

@ -62,7 +62,7 @@ class Node {
continue;
}
$_tmp = explode(DS, $vo);
$controllerName = rtrim(array_pop($_tmp), '.php');
$controllerName = preg_replace('|\.php$|', '', array_pop($_tmp));
array_pop($_tmp);
$moduleName = array_pop($_tmp);
$className = config('app_namespace') . "\\{$moduleName}\\controller\\{$controllerName}";