Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function mergeTwoInts($first, $second)
- {
- return ($first << 16) | $second;
- }
- function splitToTwoInts(&$merged)
- {
- $ret[0] = ($merged >> 16) & 0xFFFF;
- $ret[1] = $merged & 0xFFFF;
- return $ret;
- }
Advertisement
Add Comment
Please, Sign In to add comment