2016-04-26 16 views
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(); 

他の方法で更新してください。

+1

http://stackoverflow.com/questions/8405180/prompt-user-to-save-file-to-a-specific-location –

答えて

0

1)セキュリティ上の問題により不可能です。

2)あなたは

+0

特定の場所を保存するようにユーザーに提案する必要がありますされていますそれ以外の方法はありますか? –

関連する問題