TRIM in PHP

<?php

$str = "Hello World!    ";

echo "Without rtrim: " . $str;

echo "<br />";

echo "With rtrim: " . rtrim($str);

?>