-7

任何人都可以给我一些关于如何用 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();

提前致谢

4

1 回答 1

1

你可以这样实现,

<?php

    $downloadTokenValue = 'Youre Value';
    $desiredFileNames = 'Desired File Name Value';

    setcookie("fileDownloadToken", $downloadTokenValue, time()+3600);
    header("content-disposition: attachment;filename=$desiredFileNames"); 
    ?>

如果您想阅读该 Cookie,您可以echo $_COOKIE["fileDownloadToken"]

于 2012-07-12T08:13:45.853 回答