使用kohana框架设置cookie

时间:2014-07-18 05:37:49

标签: php cookies kohana

我尝试使用kohana设置cookie。

我在application/controller/landing_page.php

中有一个控制器
<?php
class Landing_Page_Controller extends Controller {
      public function index() {
         // here i want to set cookie
      }
}
?>

我在application/classes/cookie.php

中有Cookie课程
<?php
class Cookie extends Kohana_Cookie {

    // Set a new salt
    public $salt = "some new better random salt phrase";
}
?>

如何在控制器中使用cookie类?

1 个答案:

答案 0 :(得分:0)

这是documentation

默认情况下,存储cookie直到浏览器关闭。要使用特定的生命周期,请更改Cookie::$expiration设置:

// Set cookies to expire after 1 week
Cookie::$expiration = 604800;

// Alternative to using raw integers, for better clarity
Cookie::$expiration = Date::WEEK;