企业🤖AI Agent构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
参考 ``` public function download_file($url,$showname){ $file_name = $_GET['file']; $file_url = 'http://www.remote.tld/' . $file_name; header('Content-Type: application/octet-stream'); header("Content-transfer-encoding: Binary"); header('Content-Disposition: attachment; filename="' . $showname.'.mp4' . '"'); readfile($file_url); exit; } ``` 修改后 ``` /** * @param $url 视频路径 * @param $showname 显示下载的视频名称 * @return int|string */ public function download_file2($url,$showname){ $file_url = $url; header('Content-Type: application/octet-stream'); header("Content-transfer-encoding: Binary"); header('Content-Disposition: attachment; filename="' . $showname.'.mp4' . '"'); readfile($file_url); exit; } ```