Backtick call appends extra space

Backtick call appends extra space

am 31.03.2008 19:35:51 von martin

Look at the following code:
$year = `date +
%Y`;
echo "(".$year.")";
?>

The output is
(2008 )

There is an extra space after the "2008". Why is that, and what can I
do about it?