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 に答える