我是cakephp的新手,我想与图片建立联系。 所以我试过了:
$this->Html-link($this->Html->Image('image.png'),'http://website.com');
我在网上找到的。我无法弄清楚我需要保留图像文件的位置。我的谷歌搜索只是有结果,说使用上面的代码行,但没有提到图像文件应该保存在文件系统的哪个位置。
答案 0 :(得分:0)
您错过了>
:
$this->Html-link($this->Html->Image('image.png'),'http://website.com');
$this->Html->link($this->Html->Image('image.png'),'http://website.com');
至于您的问题,存储图像的位置取决于您。我确信Image('image.png')
也可以选择Image('../images/image.png')
或任何你想要的路径。您只需要告诉它图像在该行代码中的位置。