PHP code example of oonne / yii2-webuploader

1. Go to this page and download the library: Download oonne/yii2-webuploader 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/ */

    

oonne / yii2-webuploader example snippets


 use oonne\webuploader\Upload; 


namespace backend\controllers;

use Yii;
use yii\web\Response;
use yii\web\UploadedFile;
use oonne\webuploader\UploadServer;

class UploadController extends \yii\rest\Controller
{
    public function behaviors()
    {
        $behaviors = parent::behaviors();
        $behaviors['contentNegotiator']['formats'] = [
            'application/json' => Response::FORMAT_JSON
        ];
        return $behaviors;
    }

    protected function verbs()
    {
        return [
            'upload' => ['post'],
        ];
    }

    public function actionUpload()
    {
        $fileData = Yii::$app->request->post();
        $file = UploadedFile::getInstanceByName('file');
        $fileRet = UploadServer::uploadFile($file, $fileData, Yii::$app->params['temppath'], Yii::$app->params['filepath']);

        if ($fileRet['ret'] == 0) {
            return [
                'Ret' => 0,
                'Filename' => $fileRet['file_name'],
                'Url' => '$downloadUrl',
                'Callback' => 'location.reload(true)',
            ];
        } else {
            return [
                'Ret' => 1000,
            ];    
        }
    }
}


php composer.phar