I don't understand exactly what the problem you're having is, but if I understand correctly, then you can just assign the value to a view variable:
Code:
$this->view->year = Zend_Date();
From within a controller:
Code:
echo $this->view->year;
From within a view script: