doophp prod模式下无法加载class bug

这是doophp本身的一个bug修改方法

dooframework/Doo.php    

38行 加一句

private static $_rs_autoload;

513行 

$rs = include_once($path . 'config/autoload/autoload.php');

改为

$rs = include($path . 'config/autoload/autoload.php');
                   
if($rs!==True){
     self::$_rs_autoload = $rs;
}
else{
    $rs = self::$_rs_autoload;
}


你可能感兴趣的:(doophp prod模式下无法加载class bug)