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