Yani benim Kohana 3 projesinde oturumda her türlü kullanmak temelde mümkün değilim. Konunun bir kaç örnek:
$session = Session::instance();
$session->set('customer_id', $customer->id);
$this->request->redirect('controller/action');
//At the start of the redirected action
$session = Session::instance();
$customer_id = $session->get('customer_id');
Bir 0 değerine sahip sonra $ customer_id, oturumda, yönlendirmenin önce pozitif bir değere sahiptir ben de temel PHP oturumu ile çalıştı -. Kohana devre dışı bırakılabilir - Bilmiyorum. Biz hala $ _GET ve $ _POST kullanabilirsiniz çünkü, bu yüzden düşündüm.
session_start();
$_SESSION['customer_id'] = $customer->id;
//At the start of the redirected action
session_start();
$customer_id = $_SESSION['customer_id'];
Daha önce olduğu gibi aynı senaryo, şimdi $ customer_id dışında, yönlendirme sonra, null.
Neyin doğru şimdi denemek için emin değil, eminim Sessions diğer çerçevesi veya yüklü CMS, altında, diğerleri uygulamanın oldukça bir grup var ve ben bunlardan en az bir seans kullanmak eminim (php.ini etkinleştirmek edildi yaptınız .) Ben burada mesele şüphe olsa, http://forum.kohanaframework.org/discussion/3018/using-native-session-array/p1: Şu anda ben bu içine arıyorum.