CakePHP:image里面的链接,想让链接点到图像位置 [英] CakePHP: image inside link, want to make link point to image location

查看:149
本文介绍了CakePHP:image里面的链接,想让链接点到图像位置的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一些图片里面的链接,我想基本上看起来像这样:

I have some images inside links that I want to essentially look like this:

<a href="/path/to/img.png"><img src="/path/to/img.png" /></a>

点击链接应加载它包含的图片。我试图使用CakePHP的HTML助手来做到这一点,如下:

Clicking on the link should load the image it contains. I'm trying to use CakePHP's HTML helper to do this, as follows:

<?php
  echo $html->link(
    $html->image('img.png'),
    'img.png',
    array('escape' => false)
  );
?>

但是,当我这样做时,我会得到以下代码:

When I do this, however, I get the following code:

<a href="/pages/img.png"><img src="/path/to/img.png" /></a>

如果不使用绝对网址,我可以将链接的 href 属性指向图片的正确位置?

Without using absolute URLs, can I make the link's href attribute point to the image's correct location?

谢谢!

推荐答案

这应该可以做到:

echo $html->image('image.png', array('url' => '/' . IMAGES_URL . 'image.png'));

这篇关于CakePHP:image里面的链接,想让链接点到图像位置的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆