[lang-ref] ( slice_from_m_to_end ) ( php )

<?php
public function testSliceFromMToEnd(): void
{
	// array_slice($items, $m)
	$items = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
	$m = 3;

	$part = array_slice($items, $m);

	$this->assertSame(['3', '4', '5', '6', '7', '8', '9'], $part);
}