ThinkChat🤖让你学习和工作更高效,注册即送10W Token,即刻开启你的AI之旅 广告
>[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)