php会话flash消息

时间:2013-09-11 18:05:32

标签: php session controller

我正在尝试在重定向后创建会话flash消息。

我有Controller类

class Controller
{
    function __construct()
    {
    if(!empty($_SESSION['FLASH']))
        foreach($_SESSION['FLASH'] as $key => $val)
        $this->$key = $val;
    }
    function __destruct()
    {
        $_SESSION['FLASH']=null;
    }
}

我也有Controller子类Home,其中函数按路径运行,如/ Home / Index =>公共职能指数()

class Home extends Controller
{
    function __construct()
    {
        parent::__construct();
    }

    public function index()
    {
        //where i want to display $this->message only once
        echo $this->message; // but $this->message is undefinded why? 
    }
    public function Post_register(){
        //after post form data
        // validation 

        // this function redirect to /Home/Index  above function index();
        Uri::redirectToAction("Home","Index",array('message' => 'some message'));
    }
}

和uri类函数,我重定向用户。

public static function redirectToAction($controller,$method,$arr)
{
    $_SESSION['FLASH'] = $arr;
    header("Location:/".$controller.'/'.$method);
}

$this->message未找到原因?

3 个答案:

答案 0 :(得分:0)

在您提供的代码中,$message永远不会被定义为Controller类或其派生类Home的成员。如果要使用该成员变量,则必须将其声明为该类的成员,I.E。 public $message然后将其设置在执行中的某个位置,可能是在Uri::redirectToAction函数中。

答案 1 :(得分:0)

这是因为你的__destruct。 执行完成后,调用__destruct函数并取消设置$ _SESSION ['FLASH'],因此在脚本中无法再访问它。

From the php manuel

  

只要没有对特定对象的其他引用,或者在关闭序列期间以任何顺序,就会调用析构函数方法。

只需删除__destruct函数。

答案 2 :(得分:0)

我为这类项目编写了一个库https://github.com/tamtamchik/simple-flash

安装完成后,即可完成此操作。

redirectToAction

public static function redirectToAction($controller,$method,$arr)
{
    flash($arr['message']);
    header("Location:/".$controller.'/'.$method);
}

index

public function index()
{
    echo flash()->display(); 
}

它会生成Bootstrap个友好的警报消息。