[lang-ref] ( item_size ) ( php )

<?php
public function testItemSize(): void
{
	// count($items)
	$items = ['A', 'B', 'C', 'D', 'E'];

	$size = count($items);

	$this->assertSame(5, $size);
}