我想写一个变量来访问同一控制器中的任何动作。我写了一个共享或全局变量。
我使用Kohana 3.1。
有可能!?我没有找到任何相同问题的例子或人。
答案 0 :(得分:0)
如何使用类属性?
<?php defined('SYSPATH') or die('No direct script access.');
class Controller_Application extends Controller_Base {
public $variable = FALSE;
/* This will echo true */
public function action_index()
{
$this->variable = TRUE;
echo Debug::vars($this->variable);
}
/* This will echo false */
public function action_variable()
{
echo Debug::vars($this->variable);
}
}