端くれプログラマの備忘録 CakePHP [CakePHP] Htmlヘルパーを使った画像リンクの記法

[CakePHP] Htmlヘルパーを使った画像リンクの記法

画像リンクは頻繁に書くけど、都度書き方に迷うので整理しておく。

Html::link()を使う方法

$this->Html->link(
    $this->Html->image('product01.png'),
    array('controller' => 'products', 'action' => 'view', $product_id),
    array('escape' => false)
);

Html::image()を使う方法

$this->Html->image(
    'product01.png',
    array('url' => array('controller' => 'products', 'action' => 'view', $product_id))
);

参考サイト

【CakePHP2.3】画像付リンクの指定方法(Htmlヘルパー) – Qiita
http://qiita.com/spyder1211/items/06d0bc21086271d2eed6