Skip to content

Instantly share code, notes, and snippets.

@wrox
wrox / steamid_conversion.php
Created July 20, 2019 14:34 — forked from almirsarajcic/steamid_conversion.php
Functions used to convert 64bit Steam ID to 32bit and the other way around.
<?php
function convert_steamid_64bit_to_32bit($id)
{
$result = substr($id, 3) - 61197960265728;
return (string) $result;
}
function convert_steamid_32bit_to_64bit($id)
{