readLong() 보호된 메소드

readLong grabs the next 4 bytes shifts and combines them to produce an integer
protected readLong ( ) : integer
리턴 integer The resulting integer from the next 4 bytes
 /**
  * read long
  * @return int
  */
 public function readLong()
 {
     return parent::readLong();
 }