0
ここでは、$ report_contentコンテンツのドットRTFファイルを生成しています。 ドットRTFファイルが正常に生成されました。 ファイルのダウンロードオプションは必要ありません。場所を移動したいです。 どのようにすればいいですか?PHPを使用して特定の場所にダウンロードファイルを保存する方法
<?php
//load the rtf template as a string
$email_id = '[email protected]';
$file_dir = 'uploads/';
$report_content = "
<html>
<body>
Hello, This is testing<br /><br />
message.
</body>
</html>";
//and now serve the file as an rtf download:
echo $report_content;
header("Content-type: application/rtf");
header("Content-Disposition: attachment;filename=rtf.rtf"); //How to save in $file_dir
exit();
他の方法で更新してください。
http://stackoverflow.com/questions/8405180/prompt-user-to-save-file-to-a-specific-location –