PHP code example of auroralzdf / big-file-upload
1. Go to this page and download the library: Download auroralzdf/big-file-upload 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/ */
auroralzdf / big-file-upload example snippets
return [
/*
|------------------------
| 文件每次切片尺寸
|------------------------
*/
'chunk_size' => 1024 * 1024 * 2,
/*
|------------------------
| 允许上传文件最大尺寸
|------------------------
*/
'max_size' => 1024 * 1024 * 1024,
/*
|------------------------
| 文件保存路径
|------------------------
*/
'save_path' => 'upload/' . date('Y') . '/' . date('m') . '/',
/*
|------------------------
| 文件切片缓存路径
|------------------------
*/
'tmp_path' => storage_path('app/public/tmp'),
/*
|------------------------
| 允许上传文件类型
|------------------------
*/
'allow_type' => ['jpg', 'jpeg', 'gif', 'png', 'mp4', 'mp3', 'zip', 'apk', 'pdf', 'rar'],
/*
|------------------------
| 切片文件是否随机命名
|------------------------
*/
'rand_name' => true,
/*
|------------------------
| 是否删除临时文件
|------------------------
*/
'remove_tmp_file' => true,
];
Route::middleware('web')->get('/upload/bigfile', '\AuroraLZDF\Bigfile\Controllers\BigfileController@loadView')->name('bigfile_view');
// bindings:不限制API访问次数限制,不需要 csrf_token 验证
Route::middleware('bindings')->post('/upload/bigfile', '\AuroraLZDF\Bigfile\Controllers\BigfileController@upload')->name('bigfile_upload');
bash
php artisan vendor:publish --provider='AuroraLZDF\Bigfile\BigfileServiceProvider'