Aucune description

xu ding 9777e22496 update README il y a 6 ans
src ad6ec9e06a add config options il y a 6 ans
test fcc841d6e6 create tmpDir if not exist il y a 9 ans
.gitignore b8f5a7a7ab Resumable class completion il y a 9 ans
composer.json 406e3485d0 Made monolog a required package il y a 8 ans
phpunit.xml b8f5a7a7ab Resumable class completion il y a 9 ans
readme.md 9777e22496 update README il y a 6 ans

readme.md

PHP backend for chucked file upload

Installation

To install, use composer:



## How to use
**upload.php**

<?php include 'vendor/autoload.php';

use Dilab\Network\SimpleRequest; use Dilab\Network\SimpleResponse; use Dilab\Resumable;

$request = new SimpleRequest(); $response = new SimpleResponse();

$resumable = new Resumable($request, $response); $resumable->tempFolder = 'tmps'; $resumable->uploadFolder = 'uploads'; $resumable->process();


## More ##
### Setting custom filename(s) ###

// custom filename (extension from original file will be magically removed and re-appended) $originalName = $resumable->getOriginalFilename(Resumable::WITHOUT_EXTENSION); // will gove you "original Name" instead of "original Name.png"

// do some slugification or whatever you need... $slugifiedname = my_slugify($originalName); // this is up to you, it as ported out of the library. $resumable->setFilename($slugifiedname);

// process upload as normal $resumable->process();

// you can also get file information after the upload is complete if (true === $resumable->isUploadComplete()) { // true when the final file has been uploaded and chunks reunited.

$extension = $resumable->getExtension();
$filename = $resumable->getFilename();

}


## Testing

$ ./vendor/bin/phpunit ```