base.action.php 940 B

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | Fanwe 方维p2p借贷系统
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2011 http://www.fanwe.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: 云淡风轻(1956838968@qq.com)
  8. // +----------------------------------------------------------------------
  9. class baseModule
  10. {
  11. public function __construct()
  12. {
  13. // register_shutdown_function(function(){
  14. // if(isset($GLOBALS['redisdb'])){
  15. // $redis = $GLOBALS['redisdb'];
  16. // $redis->close();
  17. // }
  18. // });
  19. }
  20. public function __destruct()
  21. {
  22. // if(isset($GLOBALS['redisdb'])){
  23. // $redis = $GLOBALS['redisdb'];
  24. // $redis->close();
  25. // }
  26. register_shutdown_function(function(){
  27. if(isset($GLOBALS['redisdb'])){
  28. $redis = $GLOBALS['redisdb'];
  29. $redis->close();
  30. }
  31. });
  32. }
  33. }