[lang-ref] ( titlize ) ( php )
<?php
public function testTitlize(): void
{
// ucwords + strtolower
$s = 'abc def ghi';
$this->assertSame('Abc Def Ghi', ucwords(strtolower($s)));
}
<?php
public function testTitlize(): void
{
// ucwords + strtolower
$s = 'abc def ghi';
$this->assertSame('Abc Def Ghi', ucwords(strtolower($s)));
}