[lang-ref] ( init_empty_array ) ( php )

<?php
public function testInitEmptyArray(): void
{
	$d = [];
	$this->assertSame('array', gettype($d));
	$this->assertSame(0, count($d));
}