我使用CakePHP 2.0,我的图像有问题。我的图片路径如下:webroot / img / sources / picture - copy.jpg和webroot / img / sources / picture2.jpg。
第一张图片不显示在视图中(我认为它的路径为空白),但第二张图片显示在视图中。
如何显示这些图像? 感谢
答案 0 :(得分:0)
我认为,您应该避免将来在图像名称中使用whitespases -
。
使用str_replace(' ', '_')
保存图片。
但要修复已存储的图片,请尝试使用urlencode('image name.jpg');
答案 1 :(得分:0)
尝试使用urlencode();
比如urlencode('image name with spaces.jpg');