在Zend Framework 2中生成SEF URL

时间:2013-02-18 01:57:18

标签: php zend-framework2

在ZF1中,你可以通过以下方式创建一个SEF urkl

 <a href="<?php $this->url(array('controller'=>'MyCOntroller', 
 'action'=>'MyActions'));?>">My link</a>

我们如何在ZF2中做到这一点?

1 个答案:

答案 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 helperController URL Plugin Helper

的文档