No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

AppInitBehavior.php 1.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. namespace app\common\behavior;
  3. class AppInitBehavior {
  4. protected static $method;
  5. public function __construct()
  6. {
  7. }
  8. // 行为扩展的执行入口必须是run
  9. public function run(&$params){
  10. self::$method = request()->method();
  11. $this->_initialize();
  12. }
  13. private function _initialize() {
  14. $this->saveSqlmode();
  15. }
  16. /**
  17. * 保存mysql的sql-mode模式参数
  18. */
  19. private function saveSqlmode(){
  20. /*在后台模块才执行,以便提高性能*/
  21. if (!stristr(request()->baseFile(), 'index.php')) {
  22. if ('GET' == self::$method) {
  23. $key = 'isset_saveSqlmode';
  24. $sessvalue = session($key);
  25. if(!empty($sessvalue))
  26. return true;
  27. session($key, 1);
  28. $sql_mode = \think\Db::query("SELECT @@global.sql_mode AS sql_mode");
  29. $system_sql_mode = isset($sql_mode[0]['sql_mode']) ? $sql_mode[0]['sql_mode'] : '';
  30. /*多语言*/
  31. if (is_language()) {
  32. $langRow = \think\Db::name('language')->cache(true, EYOUCMS_CACHE_TIME, 'language')
  33. ->order('id asc')->select();
  34. foreach ($langRow as $key => $val) {
  35. tpCache('system', ['system_sql_mode'=>$system_sql_mode], $val['mark']);
  36. }
  37. } else {
  38. tpCache('system', ['system_sql_mode'=>$system_sql_mode]);
  39. }
  40. /*--end*/
  41. }
  42. }
  43. /*--end*/
  44. }
  45. }