|
@@ -104,13 +104,15 @@ class User extends Api
|
|
|
$data['create_time'] = date('Y-m-d H:i',time());
|
|
|
|
|
|
|
|
|
- $paths = $data['image'];
|
|
|
+ $paths = json_decode($data['image'],true);
|
|
|
+
|
|
|
+
|
|
|
|
|
|
if (!empty($paths)) {
|
|
|
$str = '';
|
|
|
foreach ($paths as $v) {
|
|
|
|
|
|
- $image = $v['path'];
|
|
|
+ $image =json_encode($v, JSON_FORCE_OBJECT);
|
|
|
|
|
|
$imageName = "25220_" . date("His", time()) . "_" . rand(1111, 9999) . '.png';
|
|
|
if (strstr($image, ",")) {
|
|
@@ -126,7 +128,7 @@ class User extends Api
|
|
|
|
|
|
$r = file_put_contents($this->app->getRootPath() . "public/" . $imageSrc, base64_decode($image));//返回的是字节数
|
|
|
if ($r) {
|
|
|
- $str = $str . 'http://degao.hdlkeji.com' .$imageSrc . '|';
|
|
|
+ $str = $str . 'http://degao.hdlkeji.com/' .$imageSrc . '|';
|
|
|
}
|
|
|
}
|
|
|
|