writeLLong() 공개 정적인 메소드

public static writeLLong ( $value )
예제 #1
0
 public function putLLong($v)
 {
     $this->buffer .= Binary::writeLLong($v);
 }
예제 #2
0
 public function write(NBT $nbt)
 {
     $nbt->buffer .= $nbt->endianness === 1 ? \pack("NN", $this->value >> 32, $this->value & 0xffffffff) : Binary::writeLLong($this->value);
 }
예제 #3
0
 public function write(NBT $nbt)
 {
     $nbt->buffer .= $nbt->endianness === 1 ? Binary::writeLong($this->value) : Binary::writeLLong($this->value);
 }
예제 #4
0
파일: NBT.php 프로젝트: ianju/PocketMine-MP
 public function putLong($v)
 {
     $this->buffer .= $this->endianness === self::BIG_ENDIAN ? Binary::writeLong($v) : Binary::writeLLong($v);
 }
예제 #5
0
 public function putLong($v)
 {
     $this->buffer .= $this->endianness === self::BIG_ENDIAN ? \pack("NN", $v >> 32, $v & 4294967295.0) : Binary::writeLLong($v);
 }