In ZF1 you were able to create a SEF urkl by doing the following
<a href="<?php $this->url(array('controller'=>'MyCOntroller',
'action'=>'MyActions'));?>">My link</a>
how do we do that in ZF2?
In ZF1 you were able to create a SEF urkl by doing the following
<a href="<?php $this->url(array('controller'=>'MyCOntroller',
'action'=>'MyActions'));?>">My link</a>
how do we do that in ZF2?
次のような方法で、Zend Framework 2 でも同様の結果が得られます。
<a href="<?php echo $this->url(
'route-name',
array('controller'=>'MyCOntroller', 'action'=>'MyActions')
); ?>">My link</a>
ルーティングに関するリファレンスと、 URL ビュー ヘルパーとコントローラー URL プラグイン ヘルパーに関するドキュメントを確認してください。