<ruby id="bdb3f"></ruby>

    <p id="bdb3f"><cite id="bdb3f"></cite></p>

      <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
        <p id="bdb3f"><cite id="bdb3f"></cite></p>

          <pre id="bdb3f"></pre>
          <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

          <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
          <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

          <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                <ruby id="bdb3f"></ruby>

                合規國際互聯網加速 OSASE為企業客戶提供高速穩定SD-WAN國際加速解決方案。 廣告
                # 使用 Session 存儲數據(Storing data in Session) # 使用 Session 存儲數據(Storing data in Session) The [*Phalcon\\Session*](#) 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 ### 啟動會話(Starting the Session) 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: ``` <pre class="calibre14">``` <?php use Phalcon\Session\Adapter\Files as Session; // Start the session the first time when some component request the session service $di->setShared('session', function () { $session = new Session(); $session->start(); return $session; }); ``` ``` ### Session 的存儲與讀取(Storing/Retrieving data in Session) From a controller, a view or any other component that extends [*Phalcon\\DI\\Injectable*](#) you can access the session serviceand store items and retrieve them in the following way: ``` <pre class="calibre14">``` <?php use Phalcon\Mvc\Controller; class UserController extends 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"); } } } ``` ``` ### Sessions 的刪除和銷毀(Removing/Destroying Sessions) It's also possible remove specific variables or destroy the whole session: ``` <pre class="calibre14">``` <?php use Phalcon\Mvc\Controller; class UserController extends Controller { public function removeAction() { // Remove a session variable $this->session->remove("user-name"); } public function logoutAction() { // Destroy the whole session $this->session->destroy(); } } ``` ``` ### 隔離不同應用的會話數據(Isolating Session Data between Applications) 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 aprefix for every session variable created in a certain application: ``` <pre class="calibre14">``` <?php use Phalcon\Session\Adapter\Files as Session; // Isolating the session data $di->set('session', function () { // All variables created will prefixed with "my-app-1" $session = new Session( array( 'uniqueId' => 'my-app-1' ) ); $session->start(); return $session; }); ``` ``` Adding a unique ID is not necessary. ### 會話袋(Session Bags) [*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: ``` <pre class="calibre14">``` <?php use Phalcon\Session\Bag as SessionBag; $user = new SessionBag('user'); $user->setDI($di); $user->name = "Kimbra Johnson"; $user->age = 22; ``` ``` ### 組件的持久數據(Persistent Data in Components) Controller, components and classes that extends [*Phalcon\\DI\\Injectable*](#) may injecta [*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. ``` <pre class="calibre14">``` <?php use Phalcon\Mvc\Controller; class UserController extends Controller { public function indexAction() { // Create a persistent variable "name" $this->persistent->name = "Laura"; } public function welcomeAction() { if (isset($this->persistent->name)) { echo "Welcome, ", $this->persistent->name; } } } ``` ``` In a component: ``` <pre class="calibre14">``` <?php use Phalcon\Mvc\Controller; class Security extends Component { public function auth() { // Create a persistent variable "name" $this->persistent->name = "Laura"; } public function getAuthName() { return $this->persistent->name; } } ``` ``` The data added to the session ($this->session) are available throughout the application, while persistent ($this->persistent)can only be accessed in the scope of the current class. ### 自定義適配器(Implementing your own adapters) The [*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](https://github.com/phalcon/incubator/tree/master/Library/Phalcon/Session/Adapter) | - [索引](# "總目錄") - [下一頁](# "過濾與清理(Filtering and Sanitizing)") | - [上一頁](# "閃存消息(Flashing Messages)") |
                  <ruby id="bdb3f"></ruby>

                  <p id="bdb3f"><cite id="bdb3f"></cite></p>

                    <p id="bdb3f"><cite id="bdb3f"><th id="bdb3f"></th></cite></p><p id="bdb3f"></p>
                      <p id="bdb3f"><cite id="bdb3f"></cite></p>

                        <pre id="bdb3f"></pre>
                        <pre id="bdb3f"><del id="bdb3f"><thead id="bdb3f"></thead></del></pre>

                        <ruby id="bdb3f"><mark id="bdb3f"></mark></ruby><ruby id="bdb3f"></ruby>
                        <pre id="bdb3f"><pre id="bdb3f"><mark id="bdb3f"></mark></pre></pre><output id="bdb3f"></output><p id="bdb3f"></p><p id="bdb3f"></p>

                        <pre id="bdb3f"><del id="bdb3f"><progress id="bdb3f"></progress></del></pre>

                              <ruby id="bdb3f"></ruby>

                              哎呀哎呀视频在线观看