PHP code example of coffeecode / uploader
1. Go to this page and download the library: Download coffeecode/uploader library . Choose the download type require .
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
coffeecode / uploader example snippets
$image = new CoffeeCode\Uploader\Image("uploads", "images", 600);
if ($_FILES) {
try {
$upload = $image->upload($_FILES['image'], $_POST['name']);
echo "<img src='{$upload}' width='100%'>";
} catch (Exception $e) {
echo "<p>(!) {$e->getMessage()}</p>";
}
}
$file = new CoffeeCode\Uploader\File("uploads", "files");
if ($_FILES) {
try {
$upload = $file->upload($_FILES['file'], $_POST['name']);
echo "<p><a href='{$upload}' target='_blank'>@CoffeeCode</a></p>";
} catch (Exception $e) {
echo "<p>(!) {$e->getMessage()}</p>";
}
}
$media = new CoffeeCode\Uploader\Media("uploads", "medias");
if ($_FILES) {
try {
$upload = $media->upload($_FILES['file'], $_POST['name']);
echo "<p><a href='{$upload}' target='_blank'>@CoffeeCode</a></p>";
} catch (Exception $e) {
echo "<p>(!) {$e->getMessage()}</p>";
}
}
$postscript = new CoffeeCode\Uploader\Send("uploads", "postscript", [
"application/postscript"
], ["ai"]);
if ($_FILES) {
try {
$upload = $postscript->upload($_FILES['file'], $_POST['name']);
echo "<p><a href='{$upload}' target='_blank'>@CoffeeCode</a></p>";
} catch (Exception $e) {
echo "<p>(!) {$e->getMessage()}</p>";
}
}
$image = new CoffeeCode\Uploader\Image("uploads", "images");
try {
foreach ($image->multiple("file", $_FILES) as $file) {
$image->upload($file, "image-" . $file["name"], 1200);
}
echo "Success!";
} catch (Exception $e) {
echo "<p>(!) {$e->getMessage()}</p>";
}