forked from iamdual/uploader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_input.php
33 lines (23 loc) · 812 Bytes
/
raw_input.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
<?php
require __DIR__ . '/../src/Uploader.php';
use \iamdual\Uploader;
if (isset($_SERVER["REQUEST_METHOD"]) && $_SERVER["REQUEST_METHOD"] == "PUT") {
$upload = new Uploader(Uploader::from_raw_input());
$upload->max_size(5); // in MB
$upload->path("upload/files");
// While uploading file from raw input data, you need to change upload function
// to "copy", otherwise file can not be uploaded!
if (! $upload->upload(true)) {
echo "Upload error: " . $upload->get_error() . PHP_EOL;
} else {
echo "Upload successful: " . $upload->get_name() . PHP_EOL;
}
} else {
echo <<<HTML
Sending files with raw input, allows you sending files from command line:
<br/>
<pre>
curl --upload-file ./hello.txt http://upload.local/examples/raw_input.php
</pre>
HTML;
}