0

http://docs.phalconphp.com/en/0.6.0/reference/session.html

セッションでのデータの保存/取得

コントローラー、ビュー、またはPhalcon \ DI \ Injectableを拡張するその他のコンポーネントから、セッションサービスにアクセスし、アイテムを保存して、次の方法で取得できます。

<?php
    class UserController extends Phalcon\Mvc\Controller
    {
        public function indexAction()
        {
            //Set a session variable
            $this->session->set("user-name", "Michael");
        }

        public function welcomeAction()
        {

            //Check if the variable is defined
            if ($this->session->has("user-name")) {

                //Retrieve its value
                $name = $this->session->set("user-name"); //here, set or get?
            }
        }
    }
4

1 に答える 1

0

あなたは正しいです。getそれは(レコードを取得するための)であるはずでした。修正例は次のとおりです。

http://docs.phalconphp.com/en/latest/reference/session.html

<?php

class UserController extends Phalcon\Mvc\Controller
{

    public function indexAction()
    {
        //Set a session variable
        $this->session->set("user-name", "Michael");
    }

    public function welcomeAction()
    {

        //Check if the variable is defined
        if ($this->session->has("user-name")) 
        {

            //Retrieve its value
            $name = $this->session->get("user-name");
        }
    }
}
于 2012-11-05T12:40:28.283 に答える