我如何在锂中结合链接和图像助手?我想要类似的东西:
<a href="http://...">
<img src="mypic.png" />
And a title
</a>
我尝试了不同的选项,但似乎没有任何效果,我必须编写自己的助手吗?
<?php
$image = $this->html->image('mypic.png');
echo $this->html->link('And a title', '', array('html' => $image));
?>