PHP code example of herroffizier / yii2-upload-manager
1. Go to this page and download the library: Download herroffizier/yii2-upload-manager 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/ */
herroffizier / yii2-upload-manager example snippets
$filePath =
Yii::$app->uploads->saveFile(
// upload group
'useless-files',
// upload file name
'file.txt',
// original file name
'/tmp/somefile.txt'
);
$filePath =
Yii::$app->uploads->moveFile(
// upload group
'useless-files',
// upload file name
'file.txt',
// original file name
'/tmp/somefile.txt'
);
$content = 'test';
$filePath =
Yii::$app->uploads->saveContent(
// upload group
'useless-files',
// upload file name
'file.txt',
// file content
$content
);