>[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)