In a ZF1 project I'm working on I needed a way to use the same view script for two separate actions. I could have added a second copy of the file to the application but then I would have had to maintain both. ZF has a quick way to switch out the view file inside the controller so I could reused it.

$this->_helper->viewRenderer->setRender('reusedviewfile');