Cakephp html链接图像+文本,不使用css

时间:2012-12-03 11:47:57

标签: cakephp

如何使用cakephp Html helper创建包含文本和图像的html链接,如下所示

<a href="#">
    <img src="images/icons/web-app/48/add-user.png" width="48" height="48"> Add User
</a>

我希望最终结果为

enter image description here

我知道我可以用css做到这一点,但我只是想知道如何使用cakephp

1 个答案:

答案 0 :(得分:7)

echo $this->Html->link($this->Html->image('design/unige_logo.png', array('width' => '48', 'height' => '48')) . ' ' . __('Add user'),
                       '#',
                       array('escape' => false));