반응형

http://www.codeigniter.com/ 에서 최근 버전을 다운로드 받는다.


The latest is Version 3.0.1 버전을 받았다.



압축된 소스파일을 WEB Root 풀어 주기만 하면 된다.



가이드는 http://www.codeigniter.com/user_guide/ 에 생각보단 잘 정리되 있다.



http://www.codeigniter.com/user_guide/overview/appflow.html




Application Flow Chart

The following graphic illustrates how data flows throughout the system:

CodeIgniter application flow

  1. The index.php serves as the front controller, initializing the base resources needed to run CodeIgniter.
  2. The Router examines the HTTP request to determine what should be done with it.
  3. If a cache file exists, it is sent directly to the browser, bypassing the normal system execution.
  4. Security. Before the application controller is loaded, the HTTP request and any user submitted data is filtered for security.
  5. The Controller loads the model, core libraries, helpers, and any other resources needed to process the specific request.
  6. The finalized View is rendered then sent to the web browser to be seen. If caching is enabled, the view is cached first so that on subsequent requests it can be served.


http://www.codeigniter.com/user_guide/general/index.html 여기 토픽별 상세하게 나와 있다.


반응형

+ Recent posts