$this->url()在Zend Framework 2的另一种 用法

在使用Zend Framework 2 过程中,发现在.phtml 文件中,$this->url()的另一种用法。

常规用法:

<a href="<?php echo $this->url('profile',array('controller'=>'user','action'=>'information')).'?uid=100000000'?>"></a>
新用法:
<a href="<?php echo $this->url($this->routeName,array('controller'=>$this->controllerName,'action'=>actionName)).'?uid=100000000'?>"></a>







你可能感兴趣的:(view,framework,Zend,route,2,zf2)