readLLong() public static method

public static readLLong ( $str )
 public function read(NBT $nbt)
 {
     $this->value = $nbt->endianness === 1 ? Binary::readLong($nbt->get(8)) : Binary::readLLong($nbt->get(8));
 }
 public function getLLong()
 {
     return Binary::readLLong($this->get(8));
 }
Beispiel #3
0
 public function getLong()
 {
     return $this->endianness === self::BIG_ENDIAN ? Binary::readLong($this->get(8)) : Binary::readLLong($this->get(8));
 }