Backtick call appends extra space



Look at the following code:
<?php
$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?

.