最新回答 / luofeng0603
已经排查解决,if($_SESSION['auth']&&(!empty($_SESSION['auth'])))改成if(isset($_SESSION['auth'])&&(!empty($_SESSION['auth'])))后解决了
2016-03-16
讲的很好,很通俗易懂。根据老师讲的mvc理论,自己动手搭建了一个app后台,删除了View的部分,视图完全交由前端进行渲染,效果不过。多谢老师,期待老师更多的课程
2016-03-15
require_once '../smarty/Smarty.class.php';
$smarty = new Smarty();
$smarty->left_delimiter = "{";//左定界符
$smarty->right_delimiter = "}";//右定界符
$smarty->template_dir="tpl";//html模板的地址
$smarty->compile_dir="template_c";//模板编译生成的文件
$smarty->cache_dir = "cache";//缓存
$smarty = new Smarty();
$smarty->left_delimiter = "{";//左定界符
$smarty->right_delimiter = "}";//右定界符
$smarty->template_dir="tpl";//html模板的地址
$smarty->compile_dir="template_c";//模板编译生成的文件
$smarty->cache_dir = "cache";//缓存
2016-03-14