画像リンクは頻繁に書くけど、都度書き方に迷うので整理しておく。
Html::link()を使う方法
1 2 3 4 5 |
$this->Html->link( $this->Html->image('product01.png'), array('controller' => 'products', 'action' => 'view', $product_id), array('escape' => false) ); |
Html::image()を使う方法
1 2 3 4 |
$this->Html->image( 'product01.png', array('url' => array('controller' => 'products', 'action' => 'view', $product_id)) ); |
参考サイト
【CakePHP2.3】画像付リンクの指定方法(Htmlヘルパー) – Qiita
http://qiita.com/spyder1211/items/06d0bc21086271d2eed6