ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
[![](http://static.phpgrace.com/statics/images/downcode.png)](http://www.phpgrace.com/tools/download/9.html) # 文件下载类 ## **功能描述** 下载指定的文件(可设置下载名)。 ## **部署说明** >将 download.php 文件直接部署到 phpGrace/tools/ 文件夹下 ## **使用演示** ~~~ <?php class indexController extends grace{     public function index(){         //不设置下载文件名         phpGrace\tools\download::download('index.php');         //设置下载文件名         phpGrace\tools\download::download('index.php', '2.php');     } } ~~~