#1 耶有宝
BaseControllerclass BaseController extends Controller {
public $layout = 'layout.html';
function init(){
header("Content-type: text/html; charset=utf-8");
}
}?>
MainController
class MainController extends BaseController {
function actionIndex(){
$this->userinfo = array("umoney"=>100);
$this->display("main_index.html");
}
}
?>
layout.html
test
<{include file=$__template_file}>
main_index.html
//这样可以
<{$userinfo.umoney}> //这样报错
<{$userinfo["umoney"]}> //这样也报错
烦请大大研究下这是什么情况
2017-05-06 23:45:00