예제 #1
0
 /**
  * Read a two byte 16-bit signed short.
  *
  * @param int $endianess read number with specified endianess, defaults to the file endianess.
  *
  * @return int
  */
 public function readInt16($endianess = -1)
 {
     return DataHandler::uint2Int16($this->readUint16($endianess));
 }