絶対パスからファイルをダウンロードしようとしていますが、動作させることができません。私は間違って何をしていますか?絶対パスからファイルをダウンロード
$fileurl = '/home/mydomain/public_html/wp-content/uploads/312tekstsecure3.pdf';
header("Content-type:application/pdf");
header('Content-Disposition: attachment; filename=' . $fileurl);
readfile($fileurl);
あなたの変数名は '$ fileurl'なので、' readfile($ fileurl); 'が必要です。 – Viktor
申し訳ありません。質問に誤字を入れました。私は同じ文字列を使用しています。 – user2806026
私はそれが働いていると思うが、同じ理由で返されたファイルは名前としてファイルパス全体を持っている。これを避けることはできますか?例:-home-mydomain-public_html-wp-content-uploads-safefiles-312tekstsecure3.pdf – user2806026