在Controller中使用url helper

时间:2014-04-10 15:21:07

标签: image url cakephp

我需要从控制器找到一个图像,我尝试了以下内容:

<img src="<?echo $this->webroot; ?>img/logo_comprobante.jpg"/> 

但不起作用,有什么办法吗?

1 个答案:

答案 0 :(得分:0)

这应该这样做:

$www_root = Router::url('/',true);
$img_url = $www_root.'img/logo_comprobante.jpg';
//or
$img_url = Router::url('/img/logo_comprobante.jpg',true);