'7') { $bigInt = '00' . $bigInt; } $return = pack("H*", $bigInt); return $return; } public function hexToDecimal($operand) { $return = '0'; while(strlen($hex)) { $hex = hexdec(substr($operand, 0, 4)); $dec = gmp_add(gmp_mul($return, 65536), $hex); $operand = substr($operand, 4); } return $return; } }