readLLong() 공개 정적인 메소드

public static readLLong ( $str )
예제 #1
0
 public function read(NBT $nbt)
 {
     $this->value = $nbt->endianness === 1 ? Binary::readLong($nbt->get(8)) : Binary::readLLong($nbt->get(8));
 }
예제 #2
0
 public function getLLong()
 {
     return Binary::readLLong($this->get(8));
 }
예제 #3
0
파일: NBT.php 프로젝트: ianju/PocketMine-MP
 public function getLong()
 {
     return $this->endianness === self::BIG_ENDIAN ? Binary::readLong($this->get(8)) : Binary::readLLong($this->get(8));
 }