initphp / upload
InitPHP Upload Library
1.0
2023-02-19 11:09 UTC
Requires
- php: >=7.4
- ext-fileinfo: *
This package is auto-updated.
Last update: 2024-10-22 23:35:21 UTC
README
It is developed to upload files to local or remote server.
Installation
composer require initphp/upload
Usage
\InitPHP\Upload\File::setPost()
Returns a normalized Array<\InitPHP\Upload\File>
from the array $_FILES
with the specified $key
.
\InitPHP\Upload\File::setPath()
Loads a specific file into the file object.
Local Adapter
use InitPHP\Upload\Upload; use InitPHP\Upload\File; $credentials = [ 'dir' => __DIR__ . '/uploads/', 'url' => 'https://example.com/uploads/', ]; $options = [ 'allowed_extensions' => [], 'allowed_mime_types' => [], 'allowed_max_size' => 0, ]; $adapter = new InitPHP\Upload\Adapters\LocalAdapter($credentials, $options); $upload = new Upload($adapter); foreach (File::setPost('files') as $file) { $upload->setFile($file) ->to(); }
FTP Adapter
use InitPHP\Upload\Upload; use InitPHP\Upload\File; $credentials = [ 'host' => 'ftp.example.com', 'port' => 21, 'username' => 'user', 'password' => '123456', 'timeout' => 90, 'url' => 'http://example.com/', ]; $options = [ 'allowed_extensions' => [], 'allowed_mime_types' => [], 'allowed_max_size' => 0, ]; $adapter = new InitPHP\Upload\Adapters\FTPAdapter($credentials, $options); $upload = new Upload($adapter); foreach (File::setPost('files') as $file) { $upload->setFile($file) ->to(); }
AWS S3 Adapter
use InitPHP\Upload\Upload; use InitPHP\Upload\File; $credentials = [ 'key' => '', 'secret_key' => '', 'region' => '', 'bucket' => '', 'ACL' => 'public-read', 'version' => 'latest', ]; $options = [ 'allowed_extensions' => [], 'allowed_mime_types' => [], 'allowed_max_size' => 0, ]; $adapter = new InitPHP\Upload\Adapters\S3Adapter($credentials, $options); $upload = new Upload($adapter); foreach (File::setPost('files') as $file) { $upload->setFile($file) ->to(); }
Credits
License
Copyright © 2023 MIT License