<?php
namespace appcontrollers;
use yiiwebController;
class HelloController extends Controller
{
public function actionIndex()
{
$hellp_str = "hello God!";
$data = array();
$data["view_hello_str"] = $hello_str;
return $this->renderPartial("index",$data);
}
}
?>
viewshelloindex.php
$helper_str = "hello world!<script>console.log(111);</script>"
<?php
use yiihelpersHtml;//转义
use yiihelpersHtmlPurifier;//过滤html
<h1><?= Html::encode($view_hello_str);?></h1> <!--Html::encode() 能防止跨站脚本攻击,转义html标签-->
<h1><?= HtmlPurifier::process($view_hello_str);?></h1>
<?= $this->render('_overview') ?><!--在一个视图中调用另一个视图-->
禁用布局
控制器内控制 public $layout=false/'layout' 控制器成员方法内控制 $this->layout=false/'layout' 视图中选择布局 $this->context->layout=false/'layout'