pocketmine\inventory\ShapedRecipe::getWidth PHP Method

getWidth() public method

public getWidth ( )
    public function getWidth()
    {
        return count($this->ingredients[0]);
    }

Usage Example

 private static function writeShapedRecipe(ShapedRecipe $recipe, BinaryStream $stream)
 {
     $stream->putInt($recipe->getWidth());
     $stream->putInt($recipe->getHeight());
     for ($z = 0; $z < $recipe->getHeight(); ++$z) {
         for ($x = 0; $x < $recipe->getWidth(); ++$x) {
             $stream->putSlot($recipe->getIngredient($x, $z));
         }
     }
     $stream->putInt(1);
     $stream->putSlot($recipe->getResult());
     $stream->putUUID($recipe->getId());
     return CraftingDataPacket::ENTRY_SHAPED;
 }