Helper.php 418 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. declare(strict_types = 1);
  3. namespace app\common\utils;
  4. class Helper
  5. {
  6. /**
  7. * 获取当前IP地址
  8. * @return string
  9. */
  10. public static function getIp(): string
  11. {
  12. return request()->ip();
  13. }
  14. /**
  15. * 获取当前登录用户ID
  16. * @return int|string
  17. */
  18. public static function getAdminUid(): int|string
  19. {
  20. return session('admin.id') ?: 0;
  21. }
  22. }