背景:使用zurb foundation的数据交换,在Concrete5中运行。
在img src路径中使用php很容易。
<img src="<?php echo $this->getThemePath(); ?>/images/myImage.png" \>
但是当我走得更远,传递参数等使用数据交换时,事情会变得混乱。我知道它可能与引号或括号等有关。帮助这个代码?
<img src="<?php echo $this->getThemePath(); ?>/images/myImage.png" data-interchange="[<?php echo $this->getThemePath(); ?>/images/myImage.png, (default)], [<?php echo $this->getThemePath(); ?>/images/myImage_@2x.png, (retina)]">
答案 0 :(得分:0)
尝试删除src="<?php echo $this->getThemePath(); ?>/images/myImage.png"
。它没有必要,因为您已将该文件指定为data-interchange参数中的缺省值。