Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

ImagesUpload.php 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\admin\model;
  14. use think\Db;
  15. use think\Model;
  16. /**
  17. * 图集图片
  18. */
  19. class ImagesUpload extends Model
  20. {
  21. //初始化
  22. protected function initialize()
  23. {
  24. // 需要调用`Model`的`initialize`方法
  25. parent::initialize();
  26. }
  27. /**
  28. * 获取单条图集的所有图片
  29. * @author 小虎哥 by 2018-4-3
  30. */
  31. public function getImgUpload($aid, $field = '*')
  32. {
  33. $result = Db::name('ImagesUpload')->field($field)
  34. ->where('aid', $aid)
  35. ->order('sort_order asc')
  36. ->select();
  37. return $result;
  38. }
  39. /**
  40. * 删除单条图集的所有图片
  41. * @author 小虎哥 by 2018-4-3
  42. */
  43. public function delImgUpload($aid = array())
  44. {
  45. if (!is_array($aid)) {
  46. $aid = array($aid);
  47. }
  48. $result = Db::name('ImagesUpload')->where(array('aid'=>array('IN', $aid)))->delete();
  49. return $result;
  50. }
  51. /**
  52. * 保存图集图片
  53. * @author 小虎哥 by 2018-4-3
  54. */
  55. public function saveimg($aid, $post = array())
  56. {
  57. $imgupload = isset($post['imgupload']) ? $post['imgupload'] : array();
  58. $imgintro = isset($post['imgintro']) ? $post['imgintro'] : array();
  59. if (!empty($imgupload) && count($imgupload) > 1) {
  60. array_pop($imgupload); // 弹出最后一个
  61. // 删除产品图片
  62. $this->delImgUpload($aid);
  63. // 添加图片
  64. $data = array();
  65. $sort_order = 0;
  66. foreach($imgupload as $key => $val)
  67. {
  68. if($val == null || empty($val)) continue;
  69. $filesize = 0;
  70. $img_info = array();
  71. if (is_http_url($val)) {
  72. $imgurl = handle_subdir_pic($val);
  73. } else {
  74. $imgurl = ROOT_PATH.ltrim($val, '/');
  75. $filesize = @filesize('.'.$val);
  76. }
  77. $img_info = @getimagesize($imgurl);
  78. $width = isset($img_info[0]) ? $img_info[0] : 0;
  79. $height = isset($img_info[1]) ? $img_info[1] : 0;
  80. $type = isset($img_info[2]) ? $img_info[2] : 0;
  81. $attr = isset($img_info[3]) ? $img_info[3] : '';
  82. $mime = isset($img_info['mime']) ? $img_info['mime'] : '';
  83. $title = !empty($post['title']) ? $post['title'] : '';
  84. $intro = !empty($imgintro[$key]) ? $imgintro[$key] : '';
  85. ++$sort_order;
  86. $data[] = array(
  87. 'aid' => $aid,
  88. 'title' => $title,
  89. 'image_url' => $val,
  90. 'intro' => $intro,
  91. 'width' => $width,
  92. 'height' => $height,
  93. 'filesize' => $filesize,
  94. 'mime' => $mime,
  95. 'sort_order' => $sort_order,
  96. 'add_time' => getTime(),
  97. );
  98. }
  99. if (!empty($data)) {
  100. Db::name('ImagesUpload')->insertAll($data);
  101. // 没有封面图时,取第一张图作为封面图
  102. $litpic = isset($post['litpic']) ? $post['litpic'] : '';
  103. if (empty($litpic)) {
  104. $litpic = $data[0]['image_url'];
  105. Db::name('archives')->where(array('aid'=>$aid))->update(array('litpic'=>$litpic, 'update_time'=>getTime()));
  106. }
  107. }
  108. delFile(UPLOAD_PATH."images/thumb/$aid"); // 删除缩略图
  109. }
  110. }
  111. }