私はPHPでpdfをダウンロードしようとしますが、私はそれを行うことができますか?誰でも助けてくれますか?
このコードで試してみますが、うまくいきません。PHPでpdfをダウンロードするには?
$file ="cv0.pdf";
$filename = "cv0descargado.pdf"; // el nombre con el que se descargara, puede ser diferente al original
header("Content-type: application/octet-stream");
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=\"$filename\"\n"); readfile($file);
可能な複製(HTTP [HTMLリンクでPDFファイルのダウンロードを行うには?]:// stackoverflowのを.com/questions/364946/how-to-make-pdf-file-download-in-html-link) –
「うまくいかない」とはどういう意味ですか? – Chris
間違いは有りませんか?か何か。 – Karthi