예제 #1
0
 /**
  * Reads the block header (which includes the count of items in the block
  * and the length in bytes of the block)
  * @returns int length in bytes of the block.
  */
 private function read_block_header()
 {
     $this->block_count = $this->decoder->read_long();
     return $this->decoder->read_long();
 }