【CakePHP2】HtmlHelperでクエリパラメータリンクを出力する 2014/01/14 環境 CakePHP2.8.0 以下のコードで/test/index?query1=1&query2=2となります。 hoge.ctp <?php echo $this->Html->link('クエリ', array( 'controller' => 'test', 'action' => 'index', '?' => array( 'query1' => 1, 'query2' => 2 ) ));