この記事の例は、参考までに PHP のファイル強制ダウンロード機能を共有します。具体的な内容は次のとおりです
public function down() { $id = $this->_get('id'); $M = M("downloads"); $data=$M->where("id=$id and status=1")->find(); !$data && exit; $filename = iconv('UTF-8','GBK',$data['filename']); $savename = $data['savename']; $myfile = $data[url] ? $data[url] : 'Uploads/file/'.$savename; if(file_exists($myfile)){ $M->where("id=$id")->setInc('downloads'); $file = @ fopen($myfile, "r"); header("Content-type: application/octet-stream"); header("Content-Disposition: attachment; filename=" .$filename ); while (!feof($file)) { echo fread($file, 50000); } fclose($file); exit; }else{ echo '文件不存在!'; } }
以上がこの記事の全内容であり、皆さんの学習に役立つことを願っています。また、皆様が PHP 中国語 Web サイトをサポートしていただけることを願っています。
PHP ファイル強制ダウンロード機能に関連するその他の記事については、PHP 中国語 Web サイトに注目してください。