[lang-ref] ( drop_first_n ) ( php )

<?php
public function testDropFirstN(): void
{
	// substr($s, $n)
	$text = '0123456789';
	$n = 3;

	$part = substr($text, $n);

	$this->assertSame('3456789', $part);
}