Files
cashier/app/common/utils/Helper.php
你的名字 ac0f12b21a 1
2025-10-15 14:53:54 +08:00

28 lines
418 B
PHP

<?php
declare(strict_types = 1);
namespace app\common\utils;
class Helper
{
/**
* 获取当前IP地址
* @return string
*/
public static function getIp(): string
{
return request()->ip();
}
/**
* 获取当前登录用户ID
* @return int|string
*/
public static function getAdminUid(): int|string
{
return session('admin.id') ?: 0;
}
}