NIUCLOUD是一款SaaS管理后台框架多应用插件+云编译。上千名开发者、服务商正在积极拥抱开发者生态。欢迎开发者们免费入驻。一起助力发展! 广告
>[success] ### 上传下载文件 1.上传文件 A.使用函数 ~~~txt move_uploaded_file($src,$dst) ~~~ B.函数介绍 [http://php.net/manual/zh/function.move-uploaded-file.php](http://php.net/manual/zh/function.move-uploaded-file.php) 2.下载文件 A.使用函数 ~~~txt Header("Content-Disposition:attachment;filename=$filename"); Header("Content-length:$filesize"); Readfile($path); ~~~ B.函数介绍 [http://php.net/manual/zh/function.readfile.php](http://php.net/manual/zh/function.readfile.php)