ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` $hello_str='Hello God'; $test_arr=array(1,2); $data['view_hello_str']=$hello_str; $data['view_test_arr']=$test_arr; //render会渲染layout,而renderPartial不会渲染 return $this->render('views',$data); //return $this->renderPartial('views'); ``` ***** 视图`views/hello/views.php`代码 ``` <h1> <?=$view_hello_str; ?> <?=$view_test_arr[0] ?> </h1> ```