LoginSignup
3
2

More than 5 years have passed since last update.

TCPDFのファイル保存

Posted at

PHPでPDF出力に用いられるTCPDF。
ファイル保存では以下のようにOutputメソッドでファイルパスとオプションとしてFを渡せばよい。

$tcpdf->Output($filePath,'F');

上記でローカルに保存する分には問題ないのだけれど、ネットワーク上のPCに対して保存する場合、保存することが出来なかった。ソースを確認した結果、/include/tcpdf_static.phpのfopenLocal関数で失敗している模様。fileプロトコルにネットワークパスが対応していなかった。if文をコメントアウトすればとりあえず解決した。
オプションのFの説明としては、ローカルでの保存と書いてあるので解決と書いていいのかどうか。

3
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
2