How can I trim whitespace from the beginning and end of a string in PHP? Example code: - Biz Tech

How can I trim whitespace from the beginning and end of a string in PHP? Example code:

Listen
$string = "  Hello World   ";

echo trim($string);