这里我为$ report_content内容生成了一个点RTF文件。 它已成功生成点RTF文件。 不需要文件下载选项,我想移动一些位置。 怎么办?
<?php
//load the rtf template as a string
$email_id = 'ram@gmail.com';
$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();
请更新任何其他方式。
答案 0 :(得分:0)
1)由于安全问题,它无法实现。
2)您必须建议用户保存特定位置