我对 PHP 很陌生。我正在尝试制作简单的脚本,允许用户从网页下载文件。
<?php
require_once('Connections/connection_psfriend.php'); ?>
$receivedfilerequest = addslashes($_REQUEST['filesource']);
$file_path = $_SERVER['DOCUMENT_ROOT'].'/'.'ps-friend'.'/' . $receivedfilerequest;
if(file_exists( $file_path)){
echo 'The file exists';
$size = filesize($file_path);
echo $size; //Its working perfectly fine till here.
exit;
}
但是接下来我该怎么做才能真正下载这个文件。我看到了一些教程,他们header("Location: ".$file_path);
在此之后使用。但这对我不起作用。这个头函数实际上做了什么,实际下载这个文件的代码应该是什么?