<a href="/student/stureg/downregcase" ><img src="http://images.cnblogs.com/reg/bmb.jpg" width="183" height="45"/></a>

 

//下载
function downregcaseAction(){
$file = "upload/regcase.jpg";
if(is_file($file)) {
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".basename($file));
readfile($file);
exit;
}else{
echo "文件不存在!";
exit;
}

}

相关文章:

  • 2021-07-08
  • 2021-07-08
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-08
  • 2022-12-23
猜你喜欢
  • 2021-10-31
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案