[lang-ref] ( to_lower ) ( php )
<?php
public function testToLower(): void
{
// strtolower
$s = 'ABC';
$this->assertSame('abc', strtolower($s));
}
<?php
public function testToLower(): void
{
// strtolower
$s = 'ABC';
$this->assertSame('abc', strtolower($s));
}