PHP强制下载json

kee*_*web 3 php json download

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

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

谢谢.

Roc*_*mat 25

header('Content-disposition: attachment; filename=file.json');
header('Content-type: application/json');
echo $json;
Run Code Online (Sandbox Code Playgroud)