reborn / reborn-upload
图片上传
v0.5
2019-04-18 08:56 UTC
Requires
- php: >=7.0
- topthink/think-installer: ^2.0
This package is auto-updated.
Last update: 2024-09-19 19:29:34 UTC
README
图片上传
demo
<?php
namespace app\index\controller;
use reborn\fileupload\FileUpload;
class Index
{
public function upload()
{
$file=(new FileUpload())->upload_local();
return $file;
}
}
html
<form action="/index/index/upload" enctype="multipart/form-data" method="post">
<input type="file" name="file" /> <br>
<input type="submit" value="上传" />
</form>