Steam:使用 PHP 将 SteamID64 转换为 SteamID

Steam: Convert SteamID64 to SteamID using PHP

如何使用 PHP/javascript 将 steamid64(示例:76561198074259974)转换为 steamid(STEAM_0:0:56997123)(我想在加载屏幕上显示 steamid,但不是steamid64)

查看此处将 steamID 转换为 steamID64 的代码:https://forums.alliedmods.net/showthread.php?t=60899?t=60899

您可以反转它以将 steamID64 转换为 steamID,为此,公式为: (steamID64 - (76561197960265728 + (steamID64 % 2)))/2

这将为您提供第二个冒号 (:) 之后的数字。如果 steamID64 为奇数 (steamID64 % 2),第一个冒号后的数字将为 1,否则为 0。