--TEST-- Test rtrim() function : basic functionality --FILE-- ===DONE=== --EXPECT-- *** Testing rtrim() : basic functionality *** -- Trim string with all white space characters -- string(27) "---These are a few words---" -- Trim non-whitespace from a string -- string(15) "!===Hello World" -- Trim some non-white space characters from a string -- string(10) "!===Hello " -- Trim some non-white space characters from a string using a character range -- string(10) "0123456789" -- Trim the ASCII control characters at the beginning of a string -- string(14) "Example string" ===DONE===