Assuming you are talking about view helpers...
Code:
class Zend_View_Helper_MyHelper
{
private $view;
public function MyHelper($foo)
{
$foo = $this->view->MyOtherHelper($foo);
return "$foo is great!";
}
public function setView(Zend_View_Interface $view)
{
$this->view = $view;
}
}