4

可能重复:
强制使用 PHP 下载文件

如果我在变量中有一个 json,我该如何强制下载?(该文件不存在)。

谢谢。

4

2 回答 2

31
header('Content-disposition: attachment; filename=file.json');
header('Content-type: application/json');
echo $json;
于 2012-07-18T16:10:38.400 回答
1
$json = json_encode( array( 'test' => 'test' ));

header('Content-disposition: attachment; filename=jsonFile.json');
header('Content-type: application/json');

echo( $json);
于 2012-07-18T16:11:07.770 回答