UploadFile.php 907 字节
<?php

namespace Lib;

/**
 * 文件
 * @author:dc
 * @time 2023/3/13 14:34
 * Class UploadFile
 * @package Lib
 */
class UploadFile
{
    /**
     * @var string
     */
    public string $name;

    /**
     * @var string
     */
    public string $tempFile;

    /**
     * @var int
     */
    public int $size;

    /**
     * @var string
     */
    public string $mime;

    /**
     * @var string
     */
    public string $ext;

    /**
     * UploadFile constructor.
     * @param $name
     * @param $tempFile
     */
    public function __construct(string $name, string $tempFile)
    {

        $this->name = $name;

        $this->tempFile = $tempFile;

        // kb
        $this->size = (int) (filesize($this->tempFile)/1024);
        // 文件类型
        $this->mime = mime_content_type($this->tempFile);

        $ext = explode('.',$name);
        $this->ext = end($ext);

    }




}