-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathfiles.cls.php
executable file
·406 lines (358 loc) · 10.7 KB
/
files.cls.php
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
<?php
/*
* This file is part of the phpems/phpems.
*
* (c) oiuv <[email protected]>
*
* 项目维护:oiuv(QQ:7300637) | 定制服务:火眼(QQ:278768688)
*
* This source file is subject to the MIT license that is bundled.
*/
class files
{
public $G;
public function __construct(&$G)
{
$this->G = $G;
}
//创建文件夹
public function mdir($path)
{
if (!file_exists($path)) {
$this->mdir(dirname($path));
mkdir($path, 0777);
}
}
//列出文件夹下的文件
public function listDir($target)
{
$target = rtrim($target, '/');
if (!is_dir($target)) {
return false;
}
$handle = dir($target);
$elem = [];
while (false !== ($entry = $handle->read())) {
if (('.' != $entry) && ('..' != $entry)) {
if (is_file($target.'/'.$entry)) {
$elem['file'][] = ['name' => $entry, 'path' => $target.'/'.$entry, 'modify' => filemtime($target.'/'.$entry), 'size' => filesize($target.'/'.$entry)];
} elseif (is_dir($target.'/'.$entry)) {
$elem['dir'][] = ['name' => $entry, 'path' => $target.'/'.$entry, 'modify' => filemtime($target.'/'.$entry)];
}
}
}
return $elem;
}
//复制文件夹
public function copyDir($source, $destination, $child)
{
if (!is_dir($destination)) {
mkdir($destination, 0777);
}
$handle = dir($source);
while ($entry = $handle->read()) {
if (('.' != $entry) && ('..' != $entry)) {
if (is_dir($source.'/'.$entry)) {
if ($child) {
xCopy($source.'/'.$entry, $destination.'/'.$entry, $child);
}
} else {
if (file_exists($destination.'/'.$entry)) {
unlink($destination.'/'.$entry);
}
if (!copy($source.'/'.$entry, $destination.'/'.$entry)) {
return false;
}
}
}
}
return true;
}
//删除文件夹
public function delDir($dir)
{
$dh = opendir($dir);
while ($file = readdir($dh)) {
if ('.' != $file && '..' != $file) {
$fullpath = $dir.'/'.$file;
if (!is_dir($fullpath)) {
$this->delDir($fullpath);
} else {
unlink($fullpath);
}
}
}
closedir($dh);
rmdir($dir);
}
//写入文件
public function writeFile($out, $content = '')
{
$t = dirname($out);
if (!is_dir($t)) {
$this->mdir($t);
}
$fp = fopen($out, 'w');
flock($fp, LOCK_EX);
$wp = fwrite($fp, $content);
flock($fp, LOCK_UN);
fclose($fp);
}
//删除文件
public function delFile($file)
{
if (file_exists($file)) {
unlink($file);
}
}
//读取文件
public function readFile($file)
{
if (function_exists('file_get_contents')) {
$content = file_get_contents($file);
} else {
$content = '';
$ay = file($file);
if (!$ay) {
return false;
}
foreach ($ay as $tmp) {
$content .= $tmp;
}
}
return $content;
}
//向文件追加内容
public function appendFile($file, $content = '', $seek = -1)
{
$fp = fopen($file, 'a');
if ($seek >= 0) {
fseek($fp, $seek);
}
flock($fp, LOCK_EX);
fwrite($fp, $content);
flock($fp, LOCK_UN);
fclose($fp);
}
//上传文件
public function uploadFile($file, $updir, $sExtension = null, $name = null)
{
if (!$sExtension) {
$sExtension = $this->getFileExtName($file['name']);
}
if (!$name) {
$name = time().rand(1000, 9999);
}
if (!file_exists($updir)) {
$this->mdir($updir);
}
$url = $updir.$name.'.'.$sExtension;
if (file_exists($url)) {
unlink($url);
}
move_uploaded_file($file['tmp_name'], $url);
if (file_exists($url)) {
$oldumask = umask(0);
chmod($url, 0777);
umask($oldumask);
}
return $url;
}
//获取文件扩展名
public function getFileExtName($filename)
{
$filename = strtolower($filename);
$exts = explode('.', $filename);
$ext = $exts[count($exts) - 1];
if (strpos($ext, '?') >= 0) {
$ext = explode('?', $ext);
return $ext[0];
}
return $ext;
}
//通过网络下载一个文件
public function wGetFiles($url, $updir)
{
$sExtension = $this->getFileExtName($url);
$name = time().rand(1000, 9999);
if (!file_exists($updir)) {
$this->mdir($updir);
}
$path = $updir.$sExtension.'/'.date('Ymd', TIME).'/'.$name.'.'.$sExtension;
if (file_exists($path)) {
unlink($path);
}
$this->writeFile($path, $this->readFile($url));
if (file_exists($path)) {
$oldumask = umask(0);
chmod($url, 0777);
umask($oldumask);
}
return $path;
}
//检测文件夹是否可写
public function dirWriteAble($dir)
{
if (!is_dir($dir)) {
$this->mdir($dir);
}
if (is_dir($dir)) {
$writeable = $this->fileWriteAble("$dir/.test.tmp", 1);
}
return $writeable;
}
//检测文件是否可写
public function fileWriteAble($file, $delTestFile = 0)
{
if ($fp = @fopen($file, 'w')) {
fclose($fp);
if ($delTestFile) {
@unlink($file);
}
$writeable = 1;
} else {
$writeable = 0;
}
return $writeable;
}
public function outCsv($fname, $r)
{
if ($this->dirWriteAble(dirname($fname))) {
$fp = fopen($fname, 'w');
foreach ($r as $line) {
fputcsv($fp, $line);
}
fclose($fp);
return $fname;
}
return false;
}
//生成缩略图
public function thumb($source, $target, $width, $height, $isresize = 1, $isstream = false)
{
list($swidth, $sheight) = getimagesize($source);
if (!$width) {
$width = $swidth;
}
if (!$height) {
$height = $sheight;
}
if ($isresize) {
$w = $swidth / $width;
$h = $sheight / $height;
if ($w > $h) {
$height = $sheight / $w;
} else {
$width = $swidth / $h;
}
}
$tmp_pic = imagecreatetruecolor($width, $height);
$ext = $this->getFileExtName($source);
$s_pic = $this->createImage($source, $ext);
if (!$s_pic) {
return false;
}
if (function_exists('imagecopyresampled')) {
imagecopyresampled($tmp_pic, $s_pic, 0, 0, 0, 0, $width, $height, $swidth, $sheight);
} else {
imagecopyresized($tmp_pic, $s_pic, 0, 0, 0, 0, $width, $height, $swidth, $sheight);
}
if ($isstream) {
$target = null;
}
if ($this->writeImage($tmp_pic, $target, 100, 'png')) {
return true;
}
return false;
}
//生成水印
public function waterMark($source, $logo, $alpha = 50, $isstream = false)
{
list($swidth, $sheight) = getimagesize($source);
list($width, $height) = getimagesize($logo);
$ext = $this->getFileExtName($source, false);
$ext2 = $this->getFileExtName($logo, false);
$s_pic = $this->createImage($source, $ext);
imagealphablending($s_pic, true);
$l_pic = $this->createImage($logo, $ext2);
imagecopymergegray($s_pic, $l_pic, intval($swidth - $width), intval($sheight - $height), 0, 0, $width, $height, $alpha);
if ($this->writeImage($s_pic, $source, 100, $ext)) {
return true;
}
return false;
}
//创建一个图片文件
public function createImage($source, $ext)
{
switch ($ext) {
case 'jpg':
if (function_exists('imagecreatefromjpeg')) {
return imagecreatefromjpeg($source);
}
return false;
break;
case 'gif':
if (function_exists('imagecreatefromgif')) {
return imagecreatefromgif($source);
}
return false;
break;
case 'png':
if (function_exists('imagecreatefrompng')) {
return imagecreatefrompng($source);
}
return false;
break;
default:
return false;
break;
}
}
//写入图片文件图像信息
public function writeImage($source, $target, $alpha, $ext)
{
switch ($ext) {
case 'jpg':
if (imagejpeg($source, $target, $alpha)) {
return true;
}
return false;
break;
case 'gif':
if (imagejpeg($source, $target, $alpha)) {
return true;
}
return false;
break;
case 'png':
if (imagejpeg($source, $target, $alpha)) {
return true;
}
return false;
break;
default:
return false;
break;
}
}
//创建随即验证码图片
public function createRandImage($randCode = null, $width = 60, $height = 24, $mix = 50)
{
$par = intval($width / 4);
$randCode = strval($randCode);
$image = imagecreatetruecolor($width, $height);
$gray = imagecolorallocate($image, 55, 55, 55);
imagefill($image, 0, 0, $gray);
for ($i = 0; $i < 4; $i++) {
$text_color = imagecolorallocate($image, rand(128, 255), rand(128, 255), rand(128, 255));
imagettftext($image, 14, intval(rand(0, 60)), 10 + $i * $par, 23 + rand(3, 8), $text_color, PEPATH.'/files/public/fonts/VERDANA.TTF', $randCode[$i]);
}
for ($i = 0; $i < 255; $i++) {
$randcolor = imagecolorallocate($image, rand(0, 255), rand(0, 255), rand(0, 255));
imagesetpixel($image, rand(1, $width), rand(1, $height), $randcolor);
}
imagepng($image);
imagedestroy($image);
return $randCode;
}
}