コード例 #1
0
 public function testEndian()
 {
     $this->int16->setEndianBig('X');
     $this->assertEquals('X', $this->int16->getEndianBig());
     $this->int16->setEndianLittle('Y');
     $this->assertEquals('Y', $this->int16->getEndianLittle());
 }
コード例 #2
0
 /**
  * @return string
  */
 public function readUInt16()
 {
     return $this->int16Reader->read($this);
 }