在使用 Url view helper 构建链接时,如果当前页面的 url 中有参数,则 Url view helper 生成的 url 也会包含参数。
例如在页面/controller/action/param/value/中的以下代码:
<a href="<?php echo $this->url(array(
'controller' => 'index',
'action' => 'index'
)) ?>">Dashboard</a>
将输出:
<a href="/index/index/param/value/">Dashboard</a>
是否可以清理参数助手输出的url?