我知道這個類似的問題是之前問過的,但我找不到解決我的特定問題的方法。 我有這個代碼,它保存到一個文件並從瀏覽器運行時立即下載到桌面。但我需要它將它保存在服務器上。我如何用這個特定的代碼來做到這一點?如何使用PHP收集文件並保存在服務器上
我是否需要將文件保存到變量中,例如$files
第一?
<?php
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Disposition: attachment;filename=export_".date('n-j-Y').".xls ");
header("Content-Transfer-Encoding: binary ");
exit();
?>
退房['file_put_contents'(http://php.net/file_put_contents) – Dale
@Dale我讀了它,但無法弄清楚..你能幫助我嗎? – MOTIVECODEX