how to reverse this operation?

Posted by coderex on Stack Overflow See other posts from Stack Overflow or by coderex
Published on 2010-05-14T21:05:44Z Indexed on 2010/05/14 21:14 UTC
Read the original article Hit count: 144

Filed under:
|
<?php

echo (2884284 >> 16), '<br>'; // = 44

echo ((2884284 >> 16) & 0xFFFF), '<br>'; // 44

from the above i got 44

so how can i retrive from 44 to 2884284 ???

© Stack Overflow or respective owner

Related posts about php

Related posts about programming-languages