セッションへのデータの保存 ========================== The session component provides object-oriented wrappers to access session data. Reasons to use this component instead of raw-sessions: * You can easily isolate session data across applications on the same domain * Intercept where session data is set/get in your application * Change the session adapter according to the application needs セッションの開始 -------------------- Some applications are session-intensive, almost any action that performs requires access to session data. There are others who access session data casually. Thanks to the service container, we can ensure that the session is accessed only when it's clearly needed: .. code-block:: php setShared( "session", function () { $session = new Session(); $session->start(); return $session; } ); セッションへのデータの保存と取得 ---------------------------------- From a controller, a view or any other component that extends :doc:`Phalcon\\Di\\Injectable <../api/Phalcon_Di_Injectable>` you can access the session service and store items and retrieve them in the following way: .. code-block:: php 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"); } } } セッションデータの削除と破棄 ---------------------------- It's also possible remove specific variables or destroy the whole session: .. code-block:: php session->remove("user-name"); } public function logoutAction() { // Destroy the whole session $this->session->destroy(); } } アプリケーション毎に別のセッションを使う ------------------------------------------- Sometimes a user can use the same application twice, on the same server, in the same session. Surely, if we use variables in session, we want that every application have separate session data (even though the same code and same variable names). To solve this, you can add a prefix for every session variable created in a certain application: .. code-block:: php set( "session", function () { // All variables created will prefixed with "my-app-1" $session = new Session( [ "uniqueId" => "my-app-1", ] ); $session->start(); return $session; } ); Adding a unique ID is not necessary. セッション・バッグ ------------------ :doc:`Phalcon\\Session\\Bag <../api/Phalcon_Session_Bag>` is a component that helps separating session data into "namespaces". Working by this way you can easily create groups of session variables into the application. By only setting the variables in the "bag", it's automatically stored in session: .. code-block:: php setDI($di); $user->name = "Kimbra Johnson"; $user->age = 22; コンポーネントでの永続的なデータ -------------------------------- Controller, components and classes that extends :doc:`Phalcon\\Di\\Injectable <../api/Phalcon_Di_Injectable>` may inject a :doc:`Phalcon\\Session\\Bag <../api/Phalcon_Session_Bag>`. This class isolates variables for every class. Thanks to this you can persist data between requests in every class in an independent way. .. code-block:: php persistent->name = "Laura"; } public function welcomeAction() { if (isset($this->persistent->name)) { echo "Welcome, ", $this->persistent->name; } } } In a component: .. code-block:: php persistent->name = "Laura"; } public function getAuthName() { return $this->persistent->name; } } The data added to the session (:code:`$this->session`) are available throughout the application, while persistent (:code:`$this->persistent`) can only be accessed in the scope of the current class. 独自アダプタの実装 ------------------------------ The :doc:`Phalcon\\Session\\AdapterInterface <../api/Phalcon_Session_AdapterInterface>` interface must be implemented in order to create your own session adapters or extend the existing ones. There are more adapters available for this components in the `Phalcon Incubator `_