web-dev-qa-db-ja.com

PHPWordを使用して添付ファイルを自動ダウンロードする

PHPWordを使用してWordドキュメントを生成しようとしています。そして、ドキュメントは正常に生成できます。しかし、生成したWord文書がサーバーに保存されるという問題があります。すぐにダウンロードできるようにするにはどうすればよいですか?

サンプル:

$PHPWord = new PHPWord();
//Searching for values to replace
$document = $PHPWord->loadTemplate('doc/Temp1.docx');
$document->setValue('Name', $Name);
$document->setValue('No', $No);
$document->save('php://output'); //it auto save into my 'doc' directory.

次のようにヘッダーにリンクしてダウンロードするにはどうすればよいですか?

header("Content-Disposition: attachment; filename='php://output'"); //not sure how to link this filename to the php://output..

親切なアドバイス。

10
JLearner

_php://output_ は書き込み専用ストリームであり、画面に書き込みます(echoなど)。

したがって、$document->save('php://output');はファイルをサーバー上のどこにも保存せず、単にエコーアウトします。

_$document->save_はストリームラッパーをサポートしていないようです。そのため、文字通り_"php://output"_というファイルを作成しました。別のファイル名を使用してみてください(エコーアウトしたいだけなので、一時ファイルをお勧めします)。

_$temp_file = tempnam(sys_get_temp_dir(), 'PHPWord');
$document->save($temp_file);
_

headerでは、filenameフィールドはPHPは、ファイルの名前をブラウザに通知します。ファイルの名前である必要はありませんサーバー。これは、ブラウザが保存する名前です。

_header("Content-Disposition: attachment; filename='myFile.docx'");
_

だから、それをすべてまとめると:

_$PHPWord = new PHPWord();
//Searching for values to replace
$document = $PHPWord->loadTemplate('doc/Temp1.docx');
$document->setValue('Name', $Name);
$document->setValue('No', $No);
// // save as a random file in temp file
$temp_file = tempnam(sys_get_temp_dir(), 'PHPWord');
$document->save($temp_file);

// Your browser will name the file "myFile.docx"
// regardless of what it's named on the server 
header("Content-Disposition: attachment; filename='myFile.docx'");
readfile($temp_file); // or echo file_get_contents($temp_file);
unlink($temp_file);  // remove temp file
_
14
Rocket Hazmat
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');

$filename = 'MyFile.docx';

$objWriter->save($filename);

header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename='.$filename);
header('Content-Transfer-Encoding: binary');
header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . filesize($filename));
flush();
readfile($filename);
unlink($filename); // deletes the temporary file
exit;

今聖霊降臨祭Ver0.13.0 https://github.com/PHPOffice/PHPWord

<?
require_once "../include/PHPWord-develop/bootstrap.php";

$templateProcessor = new \PhpOffice\PhpWord\TemplateProcessor('template.docx');

$templateProcessor->setValue('var01', 'Sun');
$templateProcessor->setValue('var02', 'Mercury');

//#####################################################
// Save File
//#####################################################
//#####################################################
header("Content-Disposition: attachment; filename='output01.docx'");
  $templateProcessor->saveAs('php://output');
//#####################################################
//#####################################################
?>
2
burrotauro
// Save File
$objWriter = PHPWord_IOFactory::createWriter($PHPWord, 'Word2007');
header("Content-Disposition: attachment; filename='myFile.docx'");
$objWriter->save("php://output");
1
burrotauro

これは私のための仕事です:

$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($phpWord, 'Word2007', $download = true);

header("Content-Disposition: attachment; filename='File.docx'");

$objWriter->save("php://output");
1
Juanjo

申し訳ありませんが、これは後で入ってきました。同じ問題を解決しようとしているときに、私はこれに遭遇しました。以下を使用してLaravel 5)で動作させることができました:

    $file_dir = $template_upload_dir.DIRECTORY_SEPARATOR.'filename.docx';
    $tags = array();
    if (file_exists($file_dir)) {
        $templateProcessor = new TemplateProcessor($file_dir);
        $tags = $templateProcessor->getVariables();
        $replace = array(''); 

        $templateProcessor->setValue($tags, $replace);
        $save_file_name = $fullname.'-'.$inv_code.'-'.date('YmdHis').'.docx';
        $templateProcessor->saveAs($save_file_name);

        return response()->download($save_file_name)->deleteFileAfterSend(true);
    }

それが誰かを助けることを願っています!!!

0
user3214824

@ user3214824の回答に基づくLaravelの簡単な解決策。

// ...    
$objWriter = \PhpOffice\PhpWord\IOFactory::createWriter($PHPWord, 'Word2007');
$doc_name = 'fileName.docx';
$objWriter->save($doc_name); // saving in the public path just for testing

return response()->download(public_path($doc_name))->deleteFileAfterSend(true);
0
Felipe