如何创建下载php文件的链接?

时间:2016-02-07 18:20:26

标签: php html

我有一个网站,我希望能够提供一个链接,使用户能够下载一个php文件,我不希望它运行或用户导航到网址,但能够下载原始文件,这可能吗?

由于

1 个答案:

答案 0 :(得分:0)

感谢Biswajit,这个链接让我得到了我需要的东西(我看到了原来的“重复”,但我没有为我工作)

<?php
    // Fetch the file info.
    $filePath = '/path/to/file/on/disk.jpg';

    if(file_exists($filePath)) {
        $fileName = basename($filePath);
        $fileSize = filesize($filePath);

        // Output headers.
        header("Cache-Control: private");
        header("Content-Type: application/stream");
        header("Content-Length: ".$fileSize);
        header("Content-Disposition: attachment; filename=".$fileName);

        // Output file.
        readfile ($filePath);                   
        exit();
    }
    else {
        die('The provided file path is not valid.');
    }
?>