如何使用cakephp Html helper创建包含文本和图像的html链接,如下所示
<a href="#">
<img src="images/icons/web-app/48/add-user.png" width="48" height="48"> Add User
</a>
我希望最终结果为
我知道我可以用css做到这一点,但我只是想知道如何使用cakephp
答案 0 :(得分:7)
echo $this->Html->link($this->Html->image('design/unige_logo.png', array('width' => '48', 'height' => '48')) . ' ' . __('Add user'),
'#',
array('escape' => false));