base.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. <?php
  2. namespace controller;
  3. class base extends \Qii\Base\Controller
  4. {
  5. public $enableDB = true;
  6. public $enableView = true;
  7. public function indexAction()
  8. {
  9. }
  10. /**
  11. * 初始化view后执行方法
  12. */
  13. protected function initView()
  14. {
  15. $this->view->assign('pathes', _include('../private/configure/path.config.php'));
  16. }
  17. /**
  18. * 当data中带code的时候,自动添加msg
  19. *
  20. * @param $data
  21. * @return string
  22. */
  23. public function jsonEncode($data)
  24. {
  25. if (empty($data)) return '{}';
  26. if (isset($data['code']) && $data['code'] > 0 && !isset($data['msg'])) $data['msg'] = _i($data['code']);
  27. return json_encode($data, JSON_HEX_TAG | JSON_HEX_APOS | JSON_HEX_QUOT | JSON_HEX_AMP | JSON_UNESCAPED_UNICODE);
  28. }
  29. /**
  30. * 输出JSON数据后直接退出
  31. * @param array $data 数据
  32. * @param bool $exit 是否输出数据以后退出
  33. */
  34. public function echoJson($data, $exit = true)
  35. {
  36. ob_end_clean();
  37. echo $this->jsonEncode($data);
  38. if ($exit) exit();
  39. }
  40. }