[lang-ref] ( init_array ) ( php )

<?php
public function testInitArray(): void
{
	// $items = [1, 2, 3]
	$items = [1, 2, 3];

	$this->assertIsArray($items);
	$this->assertSame(3, count($items));
}