[lang-ref] ( get_values ) ( php )

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

	$values = array_values($d);
	$this->assertSame([1, 2, 3], $values);
}