[lang-ref] ( capitalize ) ( php )

<?php
public function testCapitalize(): void
{
	// ucfirst + strtolower
	$s = 'abc def ghi';
	$this->assertSame('Abc def ghi', ucfirst(strtolower($s)));
}