-
Notifications
You must be signed in to change notification settings - Fork 0
/
upload.php
78 lines (67 loc) · 3.91 KB
/
upload.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
<?php define('ACCESS', true);
include_once 'function.php';
if (IS_LOGIN) {
$title = 'Tải lên tập tin';
include_once 'header.php';
echo '<div class="title">' . $title . '</div>';
if ($dir == null || !is_dir(processDirectory($dir))) {
echo '<div class="list"><span>Đường dẫn không tồn tại</span></div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/list.png"/> <a href="index.php' . $pages['paramater_0'] . '">Danh sách</a></li>
</ul>';
} else {
$dir = processDirectory($dir);
if (isset($_POST['submit'])) {
$isEmpty = true;
foreach ($_FILES['file']['name'] AS $entry) {
if (!empty($entry)) {
$isEmpty = false;
break;
}
}
if ($isEmpty) {
echo '<div class="notice_failure">Chưa chọn tập tin</div>';
} else {
for ($i = 0; $i < count($_FILES['file']['name']); ++$i) {
if (!empty($_FILES['file']['name'][$i])) {
if ($_FILES['file']['error'] == UPLOAD_ERR_INI_SIZE) {
echo '<div class="notice_failure">Tập tin <strong class="file_name_upload">' . $_FILES['file']['name'][$i] . '</strong> vượt quá kích thước cho phép</div>';
} else {
if (copy($_FILES['file']['tmp_name'][$i], $dir . '/' . str_replace(array('_jar', '.jar1', '.jar2'), '.jar', $_FILES['file']['name'][$i])))
echo '<div class="notice_succeed">Tải lên tập tin <strong class="file_name_upload">' . $_FILES['file']['name'][$i] . '</strong>, <span class="file_size_upload">' . size($_FILES['file']['size'][$i]) . '</span> thành công</div>';
else
echo '<div class="notice_failure">Tải lên tập tin <strong class="file_name_upload">' . $_FILES['file']['name'][$i] . '</strong> thất bại</div>';
}
}
}
}
}
echo '<div class="list">
<span>' . printPath($dir, true) . '</span><hr/>
<form action="upload.php?dir=' . $dirEncode . $pages['paramater_1'] . '" method="post" enctype="multipart/form-data">
<span class="bull">•</span>Tập tin 1:<br/>
<input type="file" name="file[]" size="18"/><br/>
<span class="bull">•</span>Tập tin 2:<br/>
<input type="file" name="file[]" size="18"/><br/>
<span class="bull">•</span>Tập tin 3:<br/>
<input type="file" name="file[]" size="18"/><br/>
<span class="bull">•</span>Tập tin 4:<br/>
<input type="file" name="file[]" size="18"/><br/>
<span class="bull">•</span>Tập tin 5:<br/>
<input type="file" name="file[]" size="18"/><br/>
<input type="submit" name="submit" value="Tải lên"/>
</form>
</div>
<div class="title">Chức năng</div>
<ul class="list">
<li><img src="icon/create.png"/> <a href="create.php?dir=' . $dirEncode . $pages['paramater_1'] . '">Tạo mới</a></li>
<li><img src="icon/import.png"/> <a href="import.php?dir=' . $dirEncode . $pages['paramater_1'] . '">Nhập khẩu tập tin</a></li>
<li><img src="icon/list.png"/> <a href="index.php?dir=' . $dirEncode . $pages['paramater_1'] . '">Danh sách</a></li>
</ul>';
}
include_once 'footer.php';
} else {
goURL('login.php');
}
?>