/** * Read an eight byte 64-bit signed long. * * @param int $endianess read number with specified endianess, defaults to the file endianess. * * @return int */ public function readInt64($endianess = -1) { return DataHandler::uint2Int64($this->readUint64($endianess)); }