本文整理汇总了PHP中pocketmine\nbt\NBT::putInt方法的典型用法代码示例。如果您正苦于以下问题:PHP NBT::putInt方法的具体用法?PHP NBT::putInt怎么用?PHP NBT::putInt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类pocketmine\nbt\NBT
的用法示例。
在下文中一共展示了NBT::putInt方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: write
public function write(NBT $nbt)
{
$nbt->putInt(strlen($this->value));
$nbt->put($this->value);
}
示例2: write
public function write(NBT $nbt)
{
if (!isset($this->tagType)) {
$id = null;
foreach ($this as $tag) {
if ($tag instanceof Tag) {
if (!isset($id)) {
$id = $tag->getType();
} elseif ($id !== $tag->getType()) {
return false;
}
}
}
$this->tagType = $id;
}
$nbt->putByte($this->tagType);
/** @var Tag[] $tags */
$tags = [];
foreach ($this as $tag) {
if ($tag instanceof Tag) {
$tags[] = $tag;
}
}
$nbt->putInt(count($tags));
foreach ($tags as $tag) {
$tag->write($nbt);
}
}
示例3: write
public function write(NBT $nbt)
{
$nbt->putInt(count($this->value));
$nbt->put(pack($nbt->endianness === NBT::LITTLE_ENDIAN ? "V*" : "N*", ...$this->value));
}
示例4: write
public function write(NBT $nbt, bool $network = false)
{
$nbt->putInt(strlen($this->value), $network);
$nbt->put($this->value);
}