我的图片中有空白区域。在某些页面上,它工作正常。在其他方面,它会切断空白区域。有时候它有效而不是其他有效的原因吗?
相同的图像...... 我在一页上得到这个(不正确):
<img src="/assets/848b31ff/thumb_4307-0403141" large.jpg="">
$thumb = Yii::app()->assetManager->publish(Yii::app()->basePath.'/images/'.$data->product->product_image); <? echo '<a href="'.$url. '"><img src ='.$thumb.'><b>'.$prodname.'</b></a>';?>
这是另一个(正确的):
<img src="/assets/848b31ff/thumb_4307-0403141 large.jpg" class="thumb-product" border="0" alt="">
if(is_file($img_path.$model->product_image) && is_file($thumb_path.$model->product_image)){ $product_imaget = Yii::app()->assetManager->publish(Yii::app()->basePath.'/images/'.$model->product_image); }
答案 0 :(得分:0)
您在 src 参数的第一个echo
中缺少引号。这应该是这样的:
<? echo '<a href="'.$url. '"><img src ="'.$thumb.'"><b>'.$prodname.'</b></a>';?>