理解应用是如何工作的(Understanding How Phalcon Applications Work)

如果你已经看过了 tutorial 或者已经通过 Phalcon Devtools 生成了代码,你将很容易识别以下的启动文件:

  1. <?php
  2.  
  3. use Phalcon\Mvc\Application;
  4.  
  5. // 注册自动加载器
  6. // ...
  7.  
  8. // 注册服务
  9. // ...
  10.  
  11. // 处理请求
  12. $application = new Application($di);
  13.  
  14. try {
  15. $response = $application->handle();
  16.  
  17. $response->send();
  18. } catch (\Exception $e) {
  19. echo "Exception: ", $e->getMessage();
  20. }

控制器中全部核心的工作都会在handle()被回调时触发执行。

  1. <?php
  2.  
  3. $response = $application->handle();

手动启动(Manual bootstrapping)

如果你不想使用 Phalcon\Mvc\Application ,以上的代码可以改成这样:

  1. <?php
  2.  
  3. // 获取 'router' 服务
  4. $router = $di["router"];
  5.  
  6. $router->handle();
  7.  
  8. $view = $di["view"];
  9.  
  10. $dispatcher = $di["dispatcher"];
  11.  
  12. // 传递路由的相关数据传递给调度器
  13.  
  14. $dispatcher->setControllerName(
  15. $router->getControllerName()
  16. );
  17.  
  18. $dispatcher->setActionName(
  19. $router->getActionName()
  20. );
  21.  
  22. $dispatcher->setParams(
  23. $router->getParams()
  24. );
  25.  
  26. // 启动视图
  27. $view->start();
  28.  
  29. // 请求调度
  30. $dispatcher->dispatch();
  31.  
  32. // 渲染相关视图
  33. $view->render(
  34. $dispatcher->getControllerName(),
  35. $dispatcher->getActionName(),
  36. $dispatcher->getParams()
  37. );
  38.  
  39. // 完成视图
  40. $view->finish();
  41.  
  42. $response = $di["response"];
  43.  
  44. // 传递视图内容给响应对象
  45. $response->setContent(
  46. $view->getContent()
  47. );
  48.  
  49. // Send the response
  50. $response->send();

以下代码替换了 Phalcon\Mvc\Application ,虽然缺少了视图组件,但却更适合Rest风格的API接口:

  1. <?php
  2.  
  3. use Phalcon\Http\ResponseInterface;
  4.  
  5. // 获取 'router' 服务
  6. $router = $di["router"];
  7.  
  8. $router->handle();
  9.  
  10. $dispatcher = $di["dispatcher"];
  11.  
  12. // 传递路由的相关数据传递给调度器
  13.  
  14. $dispatcher->setControllerName(
  15. $router->getControllerName()
  16. );
  17.  
  18. $dispatcher->setActionName(
  19. $router->getActionName()
  20. );
  21.  
  22. $dispatcher->setParams(
  23. $router->getParams()
  24. );
  25.  
  26. // 请求调度
  27. $dispatcher->dispatch();
  28.  
  29. // 获取最后的返回结果
  30. $response = $dispatcher->getReturnedValue();
  31.  
  32. // 判断结果是否是 'response' 对象
  33. if ($response instanceof ResponseInterface) {
  34. // 发送响应
  35. $response->send();
  36. }

另外一个修改就是在分发器中对抛出异常的捕捉可以将请求转发到其他的操作:

  1. <?php
  2.  
  3. use Phalcon\Http\ResponseInterface;
  4.  
  5. // 获取 'router' 服务
  6. $router = $di["router"];
  7.  
  8. $router->handle();
  9.  
  10. $dispatcher = $di["dispatcher"];
  11.  
  12. // 传递路由的相关数据传递给调度器
  13.  
  14. $dispatcher->setControllerName(
  15. $router->getControllerName()
  16. );
  17.  
  18. $dispatcher->setActionName(
  19. $router->getActionName()
  20. );
  21.  
  22. $dispatcher->setParams(
  23. $router->getParams()
  24. );
  25.  
  26. try {
  27. // 请求调度
  28. $dispatcher->dispatch();
  29. } catch (Exception $e) {
  30. // An exception has occurred, dispatch some controller/action aimed for that
  31.  
  32. // Pass the processed router parameters to the dispatcher
  33. $dispatcher->setControllerName("errors");
  34. $dispatcher->setActionName("action503");
  35.  
  36. // Dispatch the request
  37. $dispatcher->dispatch();
  38. }
  39.  
  40. // 获取最后的返回结果
  41. $response = $dispatcher->getReturnedValue();
  42.  
  43. // 判断结果是否是 'response' 对象
  44. if ($response instanceof ResponseInterface) {
  45. // 发送响应
  46. $response->send();
  47. }

尽管上面的代码比使用 Phalcon\Mvc\Application 而需要的代码远远要累赘得很,但它为启动你的应用提供了一个可修改、可定制化的途径。因为根据你的项目需要,你可以想对实例什么和不实例化什么进行完全的控制,或者想用你自己的组件来替代那些确定和必须的组件从而扩展默认的功能。

原文: http://www.myleftstudio.com/reference/applications-explained.html