我需要从控制器找到一个图像,我尝试了以下内容:
<img src="<?echo $this->webroot; ?>img/logo_comprobante.jpg"/>
但不起作用,有什么办法吗?
答案 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);