Kohana Request
1. Request Routing $page_name = Request::instance()->param('page'); $this->request->response = View::factory('page/'.$page_name) ->bind('menu', $menu); $menu = Request::factory('static/menu')->execute()->response; view 안에서의 사용 execute()->response ?> 2. Route 의 흐름을 무시하도록 라우팅 기본 controller/action/id 이라면 controller/action/id/and/anything/else/you/want/to/add/at/random 요렇게 하려면 Route::set('default', ..
웹개발/Php
2011. 8. 26. 05:53
Kohana 3.2 Config 얻기..
3.1 이전 버전에서는 Kohana::Config('aaa.ggg'); 이었는뎅... 3.2 부터는 $config = Kohana::$config->load('my_group'); $config = Kohana::$config->load('my_group'); $value = $config->get('var'); $config = Kohana::$config->load('my_group'); $config->set('var', 'new_value'); 변경 되었냉.. 훔
웹개발/Php
2011. 8. 24. 14:48