已采纳回答 / 此昵称已被占用
PHPStorm 是jetbrains公司出品的一款PHP的集成开发环境,运行时需要Java支持,是公认的最好的PHP IDE。https://www.jetbrains.com/phpstorm/ PHPStorm是一款付费软件。
2017-04-06
$loader = new \Twig_Loader_Filesystem('./app/views');
$twig = new \Twig_Environment($loader, array(
'cache' => MY.'/log/twig',
'debug' => DEBUG,
));
$template = $twig->load($file);
$template->display($this->assign?:'');
$twig = new \Twig_Environment($loader, array(
'cache' => MY.'/log/twig',
'debug' => DEBUG,
));
$template = $twig->load($file);
$template->display($this->assign?:'');
2017-04-03
if(class_exists($controller));
if(method_exists($controller,$method));
if(method_exists($controller,$method));
已采纳回答 / 开03975976
你在index.php调用的时候 是 route 这类的实例化是在imooc 这个类的方法里面; 属于core这个空间的;实际上全写的话是 new \core\route() 第一次实例化,因为不存在这个类(\core\route); 然后执行spl_autoload_register()这个方法 然后他会去执行imooc 下的load方法,load的class 参数就等于调用 不存在的类名 \core\route
2017-03-31