[lang-ref] ( trim_trailing_whitespace ) ( php )

<?php
public function testTrimTrailingWhitespace(): void
{
	// rtrim
	$text = "\n\t  abc  def\t  \n  ";
	$trimmed = rtrim($text);
	$this->assertSame("\n\t  abc  def", $trimmed);
}