Download the PHP package macroscope29/yii2-file-upload without Composer
On this page you can find all versions of the php package macroscope29/yii2-file-upload. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download macroscope29/yii2-file-upload
More information about macroscope29/yii2-file-upload
Files in macroscope29/yii2-file-upload
Package yii2-file-upload
Short Description Yii2 FileUpload – PHP library for uploading files to local server or Amazon S3
License MIT
Homepage https://github.com/vlaim/yii2-file-upload
Informations about the package yii2-file-upload
Yii2 File Upload
Yii2 FileUpload – PHP library for uploading files to your server or Amazon S3. It makes easy for developers to handle with yii2 UploadedFile instances. It's also possible to upload files via URLs from external sources.
Getting Started
Installation
The preferred way to install this extension is through composer.
Note: Check the composer.json for this extension's requirements and dependencies. Read this web tip /wiki on setting the
minimum-stability
settings for your application's composer.json.
Either run
$ php composer.phar require vlaim/yii2-file-upload "dev-master"
or add
"vlaim/yii2-file-upload": "dev-master"
to the require
section of your composer.json
file.
Do not forget include Composer autoloader and define namespace for library
Quick Examples
Upload a file to your local server
Upload a file to Amazon S3
This code uploads a file to Amazon S3. You must provide an associative array as second argument in FileUpload constructor in following way:
Methods
setUploadFolder(string $folder)
Sets folder name in which files will be uploaded to.
Default to 'uploads'
setFsPath(string $fsPath)
(Only for Local mode)
Sets path in which files will be uploaded to. You can provide absolute or relative path
Default to /
setFsUrl(string $url)
(Only for Local mode)
Sets url. For example, if you set path to 'http://static.example.com' file after uploading will have URL http://static.example.com/path/to/your/file
Default to /
hashFilename(boolean $hash)
Defines if upload filename needs to be hashed using md5 algorythm in following way:
Default to true
setACL(string $acl)
Sets Access Control List.
Read more at http://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html
Catching and handling exceptions
To catch exceptions use FileUploadException class
Tests
Will be added soon :)
Issues
Bug reports and feature requests can be submitted on the Github Issue Tracker.
License
yii2-file-upload is released under the MIT License. See the bundled LICENSE.md for details.