Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想缓存从帖子表单中收集的搜索条件。就像年龄 > 20 或性别是男性一样。然后,如果我使用分页,当我单击下一页时,我可以很快得到搜索。但我对在 php mvc 框架 kohana 3.2 中工作感到困惑。谁能给我一个demo?
看看Session类:
Session
Session::instance()->set($key, $value); $value = Session::instance()->get($key); if ($value) { // do something with the value }