예제 #1
0
 /**
  * Read a four byte 32-bit signed int.
  *
  * @param int $endianess read number with specified endianess, defaults to the file endianess.
  *
  * @return int
  */
 public function readInt32($endianess = -1)
 {
     return DataHandler::uint2Int32($this->readUint32($endianess));
 }