Supported Versions: PHP 4, PHP 5, PHP 7, PHP 8
Counts all elements in an array or in a Countable object
Alias sizeof
<?php count(Countable|array $value, int $mode = COUNT_NORMAL): int
<?php     }



    $frame++;

    if ($frame == count($animation)) {

        $frame = 0;

    }

}
<?php     public function count(): int

    {

        return count($this->items);

    }



    public function merge(Collection $that)
<?php     private function getFullWidth(array $columnWidths): int

    {


        return array_sum($columnWidths) + (count($columnWidths) * $this->columnPadding * 2) + (count($columnWidths) + 1);

    }



    public static function make()