Your Name 10 månader sedan
förälder
incheckning
552f13befa
2 ändrade filer med 22 tillägg och 0 borttagningar
  1. 13
    0
      application/admin/controller/Custom.php
  2. 9
    0
      application/admin/model/Custom.php

+ 13
- 0
application/admin/controller/Custom.php Visa fil

@@ -327,6 +327,7 @@ class Custom extends Base
327 327
             //查询排序 等级
328 328
             $sort_order = Db::name('archives')->where('aid','=',(int)$post['level_group_name'])->value('sort_order');
329 329
 
330
+            //var_dump($post['addonFieldExt']);die;
330 331
             //获取文档文件后缀
331 332
             if(!empty($post['addonFieldExt']['down_eyou_remote'])){
332 333
                 $file = explode('.',$post['addonFieldExt']['down_eyou_remote']);
@@ -334,6 +335,12 @@ class Custom extends Base
334 335
             }else{
335 336
                 $ext = '';
336 337
             }
338
+            if(!empty($post['addonFieldExt']['down_eyou_local'])){
339
+                $file = explode('.',$post['addonFieldExt']['down_eyou_local']);
340
+                $ext = end($file);
341
+            }else{
342
+                $ext = '';
343
+            }
337 344
 
338 345
             // --存储数据
339 346
             $newData = array(
@@ -906,6 +913,12 @@ class Custom extends Base
906 913
                 $ext = '';
907 914
             }
908 915
 
916
+            if(!empty($post['addonFieldExt']['down_eyou_local'])){
917
+                $file = explode('.',$post['addonFieldExt']['down_eyou_local']);
918
+                $ext = end($file);
919
+            }else{
920
+                $ext = '';
921
+            }
909 922
 
910 923
             // --存储数据
911 924
             $newData = array(

+ 9
- 0
application/admin/model/Custom.php Visa fil

@@ -48,6 +48,15 @@ class Custom extends Model
48 48
         }
49 49
 
50 50
 
51
+        //获取远程图片尺寸
52
+        if(!empty($post['addonFieldExt']['down_eyou_local'])){
53
+            $remoteFile = $post['addonFieldExt']['down_eyou_local'];
54
+            $headers = get_headers($remoteFile, true);
55
+            $fileSize = $headers['Content-Length'];
56
+            $post['addonFieldExt']['size'] = $fileSize;
57
+        }
58
+
59
+
51 60
 
52 61
         $addonFieldExt = !empty($post['addonFieldExt']) ? $post['addonFieldExt'] : array();
53 62
         model('Field')->dealChannelPostData($post['channel'], $post, $addonFieldExt);

Loading…
Avbryt
Spara