UploadFile.php
1.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?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;
/**
* @var string
*/
public string $saveName = '';
public string $savePath = '';
/**
* 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);
$this->savePath = PUBLIC_PATH.'/storage/';
}
/**
* @param null $name
* @return bool
* @author:dc
* @time 2023/4/6 13:58
*/
public function move($name = null){
if(!is_dir($this->savePath)){
@mkdir($this->savePath,0775,true);
}
// 保存的文件
$this->saveName = $name ? $name : md5_file($this->tempFile).'.'.$this->ext;
return move_uploaded_file($this->tempFile,$this->savePath.$this->saveName);
}
}