重複の可能性:
PHP を使用して強制的にファイルをダウンロードする
変数に json がある場合、ダウンロードを強制するにはどうすればよいですか? (ファイルが存在しません)。
ありがとう。
header('Content-disposition: attachment; filename=file.json');
header('Content-type: application/json');
echo $json;
$json = json_encode( array( 'test' => 'test' ));
header('Content-disposition: attachment; filename=jsonFile.json');
header('Content-type: application/json');
echo( $json);