Возможный дубликат:
Принуждение загрузить файл с помощью 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);