[lang-ref] ( to_upper ) ( php )

<?php
public function testToUpper(): void
{
	// strtoupper
	$s = 'abc';
	$this->assertSame('ABC', strtoupper($s));
}