1. 程式人生 > >幾個yii常用的函數

幾個yii常用的函數

yii 函數

轉向首頁

$this->redirect([‘site/index‘])

$this->gohome();


返回 上一層

$this->goBack();


刷新

$this->refresh();


顯示index視圖

return $this->render(‘index‘, [‘data‘ => [1,2,3]])


不顯示全部layout,只顯示content

return $this->renderPartial(‘index‘, [‘data‘ => [1,2,3]])

本文出自 “Epicor, magento” 博客,請務必保留此出處http://3154408.blog.51cto.com/3144408/1977172

幾個yii常用的函數