当前位置:Gxlcms > PHP教程 > phpgetimagesize函数获取图片宽高信息

phpgetimagesize函数获取图片宽高信息

时间:2021-07-01 10:21:17 帮助过:26人阅读

  1. $images_array = array("http://static.zend.com/img/logo.gif");
  2. foreach($images_array as $image)
  3. {
  4. list($width, $height, $type, $attr) = getimagesize($image);
  5. $new_height = (int)(192 / $width * $height);
  6. echo '
  7. ';
  8. }

人气教程排行