fork download
  1. <?php
  2.  
  3. $i = 6;
  4. $ar = unpack("C*", pack("L", $i));
  5.  
  6. print_r($ar);
Success #stdin #stdout 0.02s 25936KB
stdin
Standard input is empty
stdout
Array
(
    [1] => 6
    [2] => 0
    [3] => 0
    [4] => 0
)