CakePHP - using $this->Html->link with $this->Html->image…generating ascii instead of actual HTML

后端 未结 4 592
余生分开走
余生分开走 2021-02-08 20:10

I\'m using cakephp 2.3.0. I searched in the manual for quite awhile, but I haven\'t found the answer. I\'m trying to use $this->Html->link, along with $this->Html->image. I\'m t

4条回答
  •  执笔经年
    2021-02-08 20:56

    You need to add the escape option to the options array of your link() calls. Set it to false, like this:

    echo $this->Html->link(
        $this->Html->image('mydog.jpg'), '/lol.html', array('escape' => false)
    );
    

提交回复
热议问题