[lang-ref] ( trim_whitespace ) ( php )
<?php
public function testTrimWhitespace(): void
{
// trim
$text = "\n\t abc def\t \n ";
$trimmed = trim($text);
$this->assertSame('abc def', $trimmed);
}
<?php
public function testTrimWhitespace(): void
{
// trim
$text = "\n\t abc def\t \n ";
$trimmed = trim($text);
$this->assertSame('abc def', $trimmed);
}