定制 flow/plupload-endpoint 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

flow/plupload-endpoint

Composer 安装命令:

composer require flow/plupload-endpoint

包简介

Handles Plupload uploads

README 文档

README

An endpoint handler for the Plupload uploader.

External dependencies

  • Symfony\Component\HttpFoundation
  • Symfony\Component\Filesystem

Install

composer require flow/plupload-endpoint:0.1.x

Usage

Framework agnostic request/response

use Flow\PluploadEndpoint\JsonResponseHandler;
use Flow\PluploadEndpoint\Pluploader;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\HttpFoundation\Request;

$request = Request::createFromGlobals();

$filesystem = new Filesystem();

$pluploader = new Pluploader($request, $filesystem, './uploads');

$handler = new JsonResponseHandler($pluploader);

$response = $handler->handle(); // returns Symfony\Component\HttpFoundation\Response

$response->send(); // Sends JSON to browser

Laravel integration

class Uploads extends Controller
{
	public function upload()
	{
        $pluploader = new Pluploader(
            App::make('request'),
            new \Symfony\Component\Filesystem\Filesystem(),
            '../app/storage/uploads'
        );

		$handler = new JsonResponseHandler($pluploader);

		return $handler->handle();
	}
}

Caveats

  • Not tested for Windows/IIS environments
  • This package has no security features however here are a few tips:
    • Check the file extensions of uploaded files and exclude all extensions you're not expecting (ie. *.php files)
    • Don't put the uploaded files in a publicly accessible directory (ie. in the public_html folder)
    • Obfuscate the file name on upload

统计信息

  • 总下载量: 18
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 3
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 2
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2014-04-28

承接程序开发

PHP开发

VUE

Vue开发

前端开发

小程序开发

公众号开发

系统定制

数据库设计

云部署

网站建设

安全加固