chenhao 4 年之前
父节点
当前提交
50468a7b1f
共有 1 个文件被更改,包括 30 次插入0 次删除
  1. 30 0
      application/index/controller/User.php

+ 30 - 0
application/index/controller/User.php

@@ -103,6 +103,36 @@ class User extends Api
 
         $data['create_time'] = date('Y-m-d H:i',time());
 
+
+        $paths = $data['image'];
+
+        if (!empty($paths)) {
+            $str = '';
+            foreach ($paths as $v) {
+
+                $image = $v['path'];
+
+                $imageName = "25220_" . date("His", time()) . "_" . rand(1111, 9999) . '.png';
+                if (strstr($image, ",")) {
+                    $image = explode(',', $image);
+                    $image = $image[1];
+                }
+
+                $path = "uploads/images/" . date("Ymd", time());
+                if (!is_dir($path)) { //判断目录是否存在 不存在就创建
+                    mkdir($path, 0777, true);
+                }
+                $imageSrc = $path . "/" . $imageName;  //图片名字
+
+                $r = file_put_contents($this->app->getRootPath() . "public/" . $imageSrc, base64_decode($image));//返回的是字节数
+                if ($r) {
+                    $str = $str . 'http://degao.hdlkeji.com' .$imageSrc . '|';
+                }
+            }
+
+            $data['image'] = $str;
+        }
+
         $save = Db::name('user_feedback')->insert($data);
 
         if ($save) {