在ZF1中,你可以通过以下方式创建一个SEF urkl
<a href="<?php $this->url(array('controller'=>'MyCOntroller',
'action'=>'MyActions'));?>">My link</a>
我们如何在ZF2中做到这一点?
答案 0 :(得分:1)
您还可以在Zend Framework 2中获得类似的结果,如下所示:
<a href="<?php echo $this->url(
'route-name',
array('controller'=>'MyCOntroller', 'action'=>'MyActions')
); ?>">My link</a>
查看reference about routing以及有关URL view helper和Controller URL Plugin Helper
的文档