|
@@ -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) {
|