YII总结学习6(在一个视图中显示另外一个视图)
Posted 雨落知音
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了YII总结学习6(在一个视图中显示另外一个视图)相关的知识,希望对你有一定的参考价值。
controller\hello <?php namespace app\controllers; use yii\web\Controller; class helloController extends Controller { public function actionIndex(){ return $this->renderPartial("index"); } } ?> view\hello\about.php hello about! <?=$v_hello_str;?> view\hello\index.php hello index! <?php echo $this->render("about",array("v_hello_str"=>"hello world!"));?><!--视图组件 $this -->
以上是关于YII总结学习6(在一个视图中显示另外一个视图)的主要内容,如果未能解决你的问题,请参考以下文章
在 Yii 框架视图中使用 if-else php 代码是不是可取?