$decimal = 4; $binary = unpack("B32", pack("N", $decimal)); $newdecimal = unpack("N", pack("B32", $binary)); print $newdecimal;