博客列表 >tp5通用上传接口

tp5通用上传接口

夏日的烈风的博客
夏日的烈风的博客原创
2018年06月19日 14:59:55482浏览

<?php

namespace app\api\controller;


use think\Controller;

use think\Session;


/**

 * 通用上传接口

 * Class Upload

 * @package app\api\controller

 */

class Upload extends Controller

{

    protected function _initialize()

    {

        parent::_initialize();


        if (!Session::has('admin_id') && !Session::has('user_id')) {

            $result = [

                'error'   => 1,

                'message' => '未登录'

            ];

            echo json_encode($result);exit;

        }

    }


    /**

     * 通用图片上传接口

     * @return \think\response\Json

     */

    public function upload()

    {

        $config = [

            'size' => 2097152,

            'ext'  => 'jpg,gif,png,bmp,txt,zip'

        ];

        $file = $this->request->file('file');

        $upload_path = str_replace('\\', '/', ROOT_PATH . 'public/uploads');

        $save_path   = '/uploads/';

        $info        = $file->validate($config)->move($upload_path);


        if ($info) {

            $result = [

                'error' => 0,

                'url'   => str_replace('\\', '/', $save_path . $info->getSaveName())

            ];

        } else {

            $result = [

                'error'   => 1,

                'message' => $file->getError()

            ];

        }


        return json($result);

    }

}


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议