You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
549 B
30 lines
549 B
<?php
|
|
namespace app\appapi\controller\v1;
|
|
|
|
use app\appapi\ApiController;
|
|
use think\facade\Db;
|
|
|
|
use app\common\lib\Aes;
|
|
use app\common\lib\Vcard;
|
|
|
|
|
|
class Card extends ApiController
|
|
{
|
|
/**
|
|
* 上傳卡片logo
|
|
* @author wayne <wwayne.hsu@gmail.com>
|
|
* @param string token 加密參數
|
|
* @return json
|
|
*/
|
|
public function uploadFile(){
|
|
$files = request()->file('file');
|
|
|
|
$savename = \think\facade\Filesystem::disk('public')->putFile( 'card', $files);;
|
|
|
|
$image_url = getUrl().'/storage/'.$savename;
|
|
|
|
return $this->success($image_url);
|
|
}
|
|
|
|
}
|