任何人都可以给我一些关于如何用 PHP 编写以下代码的想法,因为下面的代码是用 C# 编写的
var response = HttpContext.Current.Response;
response.Clear();
response.AppendCookie(new HttpCookie("fileDownloadToken", downloadTokenValue);
response.AddHeader("Content-Disposition", string.Format("attachment; filename={0}",
desiredFileName));
response.Flush();
提前致谢