合规国际互联网加速 OSASE为企业客户提供高速稳定SD-WAN国际加速解决方案。 广告
``` $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> ```