我从url中获取产品和图像,并将数据和图像路径(也许是预览页面的路径来自另一个网站)保存在我的数据库中
它减慢了网站速度,最后我有代码检查路径并将其放入
$Image6 = $proItem->image;
$ImageSource6 = substr($Image6, 0, 4 );
if($ImageSource6 === "http")
{
$Product_URL6 = $proItem->image;
}
else
{
$Product_URL6 = Request::root()."/website/img/products/".$proItem->image;
}
$max_width = 200;
$max_height = 150;
$new_width = 0;
$new_height = 0;
list($width, $height) = getimagesize($Product_URL6);
if($width > $height)
{
$new_width = $max_width;
$new_height = ceil(($height/$width)*$new_width);
}
else if($width < $height)
{
$new_height = $max_height;
$new_width = ceil(($width/$height)*$new_height);
}
else
{
$new_width = $max_width;
$new_height = $max_height;
}
px!重要; width:px!重要;右边距:自动;左边距:自动“ class =” primary-img“ src =” {{$ Product_URL6}}“ alt =”单个产品“>
如果我尝试重复使这段代码在另一个div中调整另一个图像的大小,尽管我尝试使所有变量都以不同的名称命名该页面停止