Notice: Undefined property: Smarty::$templates_dir in F:\WS\wamp\www\smarty\Smarty\Smarty.class.php on line 1380
2016-02-02
最新回答 / 蛋定割
require_once 'ORG/smarty/Smarty.class.php'; 是不是没成功引入这个主文件啊 要实例化的类就在这个主文件里 如果成功引入了 那就是 test.tpl的位置不对
2016-02-02
$smarty->setCompileDir('template_c');//模板编译生成的文件 编译成php能处理的语句 避免时间和资源的浪费。
$smarty->setCompileDir('cache');//缓存
3.1.18后之前的那个直接设置路径的方法已经过时了要用我上面这个 大家要注意下 否则会报错!
$smarty->setCompileDir('cache');//缓存
3.1.18后之前的那个直接设置路径的方法已经过时了要用我上面这个 大家要注意下 否则会报错!
2016-01-31
eval() 函数调用简单但是不安全.......
可用下面代码代替
$controller=$name.'controller;
$obj=new $controller();
这行有错误,当变量后面带()时PHP会把变量当初函数来解析。
正确做法是:$obj=new $controller;
参考自http://cn2.php.net/manual/zh/functions.variable-functions.php
可用下面代码代替
$controller=$name.'controller;
$obj=new $controller();
这行有错误,当变量后面带()时PHP会把变量当初函数来解析。
正确做法是:$obj=new $controller;
参考自http://cn2.php.net/manual/zh/functions.variable-functions.php
2016-01-18