一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

php 获取图片高宽与宽度代码

时间:2022-06-24 21:10:21 编辑:袖梨 来源:一聚教程网

//you do not need to alter these functions

 代码如下 复制代码
function getheight($image) {
 $size = getimagesize($image);
 $height = $size[1];
 return $height;
}


//you do not need to alter these functions

 代码如下 复制代码
function getwidth($image) {
 $size = getimagesize($image);
 $width = $size[0];
 return $width;
}

热门栏目