/**
* 获取图片宽高,根据maxW和maxH自动居中
* $imgName 图片完整路径
* $maxW,$maxH,图片的最大宽度和最大高度
* 返回:src='图片路径' style=' width:px; height:px; margin-top:px;'
*/
function imgCenter($imgName = "", $maxW = 0, $maxH = 0) {
if($imgName != ""){
if( !stripos($imgName,$_SERVER['HTTP_HOST']) && !stripos($imgName,"网站域名"))
$imgsrc="http://".$_SERVER['HTTP_HOST'].$imgName;
else $imgsrc =$imgName ;
}
else
$imgsrc="http://".$_SERVER['HTTP_HOST']."/statics/default/images/defaultpic.gif"; //默认图片,需替换
$image_size = getimagesize($imgsrc);
$w= $image_size[0]; //600
$h= $image_size[1]; //445
$temp=number_format($w/$h,2); //1.348314606741573
if($w>$maxW){
$w=$maxW;
$h=ceil($w/$temp);
}
if($h>$maxH){
$h=$maxH;
$w=ceil($h*$temp);
}
if($w==0){
$w=$maxW;
$h=$maxH;
}
$topPX=ceil(($maxH-$h)/2);
return "src='".$imgsrc."' style='width:".$w."px; height:".$h."px; margin-top:".$topPX."px;' ";
}
上一篇>>求两个日期之间相差的天数
下一篇>>thinkphp 购物车
Copyright © 2016 Allister All Rights Reserved