returns the given string without whitespaces at the end of the string php code example
Example: how to trim text php
$text = " hello world ";
$text = trim($text);
=> "hello world"
$text = " hello world ";
$text = trim($text);
=> "hello world"