php header 怎么使用变量

发布时间:2021-07-20 14:16:08    发布者:文昌文城莱奥网络技术工作室    浏览次数:640

https://www.imooc.com/wenda/detail/354323

你可以构造字符串。例如:

 header("Content-Disposition:filename=".$survey_name.xls); 

或者

$str = "Content-Disposition:filename=".$survey_name.xls;

 header($str);