Request.php 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. <?php
  2. namespace app;
  3. // 应用请求对象类
  4. class Request extends \think\Request
  5. {
  6. /**
  7. * 当前访问插件
  8. * @var string
  9. */
  10. protected $addon;
  11. /**
  12. * 当前访问应用(模块)
  13. * @var string
  14. */
  15. protected $module;
  16. /**
  17. * 解析url
  18. * @var unknown
  19. */
  20. protected $parseUrl;
  21. /**
  22. * 当前访问插件
  23. * @param string $addon
  24. * @return string
  25. */
  26. public function addon($addon = '')
  27. {
  28. if(!empty($addon))
  29. {
  30. $this->addon = $addon;
  31. }
  32. return $this->addon;
  33. }
  34. /**
  35. * 当前访问模块
  36. * @param string $module
  37. */
  38. public function module($module = '')
  39. {
  40. if(!empty($module))
  41. {
  42. $this->module = $module;
  43. }
  44. return $this->module;
  45. }
  46. /**
  47. * 判断当前是否是微信浏览器
  48. */
  49. public function isWeixin()
  50. {
  51. if (strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger') !== false) {
  52. return 1;
  53. }
  54. return 0;
  55. }
  56. /**
  57. * 当前登录用户id
  58. * @return mixed|number
  59. */
  60. public function uid($app_module)
  61. {
  62. $uid = session($app_module."."."uid");
  63. if(!empty($uid))
  64. {
  65. return $uid;
  66. }else{
  67. return 0;
  68. }
  69. }
  70. /**
  71. * 解析url
  72. */
  73. public function parseUrl()
  74. {
  75. $addon = $this->addon() ? $this->addon() . '://' : '';
  76. return $addon.$this->module().'/'.$this->controller().'/'.$this->action();
  77. }
  78. }