我正在使用yii2高级应用程序,我想在控制器类中设置一个变量,该变量将用于该控制器的所有操作。我怎么能这样做,有人可以帮忙吗?
答案 0 :(得分:0)
你可以通过在你的控制器中创建受保护的功能并返回你的变量来实现这一点
UserController.php
public function actionView() {
$currentDate = $this->getDate();
}
public function actionList() {
$currentDate = $this->getDate();
}
protected function getDate($id) {
return $currentDate = date('d-m-Y');
}
希望这对你有用