Zend Framework:是否有任何zend框架函数来回显链接/锚点?

In CakePHP there is function like=>

echo $this->Html->link('name',array(...));

Is there anything like that in zend framework to echo link/anchor ?

You can try this in your view:

<?php

echo $this->url(array('controller'=>'controllerName','action'=>'actionName','anchor'=>'#something'));

?>

The closest thing is the Zend_View_Helper_Url object, but that is more like an internal route tool. I don't believe that there is a generic anchor tag generator though.