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?
}
}
}