,我有以下的CakePHP代碼添加類圖像鏈接
<?php echo $this->Html->image('products/'.$product['Product']['picture'],array('url'=>'/img/products/thumb.big.'.$product['Product']['picture'])); ?>
上面的代碼產生follwoing HTML:
<a href="/oscar-demo/cakephp/img/products/thumb.big.hs_2010_13_a_1920x1200_wallpaper.jpg">
<img alt="" src="/oscar-demo/cakephp/img/products/hs_2010_13_a_1920x1200_wallpaper.jpg">
</a>
但我想在a
添加一個類。我該怎麼做?