[lang-ref] ( init_array ) ( php )

<?php
public function testInitArray(): void
{
	// [ k1 => v1, ... ]
	$d = [
		'A' => 1,
		'B' => 2,
		'C' => 3,
	];

	$this->assertCount(3, $d);
}