sukohi / plasticity
请在此处输入您的包描述。
2.0.1
2017-10-12 09:00 UTC
Requires
- laravel/framework: ~5.0
This package is not auto-updated.
Last update: 2024-09-14 18:47:31 UTC
README
一个用于下载带有utf8文件名的文件的Laravel包。(适用于Laravel 5+。 适用于Laravel 4.2)
安装
执行composer命令。
composer require sukohi/plasticity:2.*
在app.php中注册服务提供者
'providers' => array(
...Others...,
Sukohi\Plasticity\PlasticityServiceProvider::class,
)
别名
'aliases' => array(
...Others...,
'Plasticity' => Sukohi\Plasticity\Facades\Plasticity::class,
)
用法
$file = public_path('example.jpg');
$name = '日本語.jpg';
return Plasticity::download($file, $name);
许可证
此包采用MIT许可证授权。
版权所有 2016 Sukohi Kuhoh