fork download
  1. <?php
  2.  
  3. $i = 123456;
  4. $ar = unpack("q", pack("q", $i));
  5.  
  6. print_r($ar);
Success #stdin #stdout 0.03s 25548KB
stdin
Standard input is empty
stdout
Array
(
    [1] => 123456
)