Categories: Php

PHP Force Download

Share

A force download script in PHP can give you more control over a file download rather than providing a direct link.

Using a force-download script, you can:

  • Validate whether a user is logged in
  • Track total number of download
<?php
function force_download( $file, $new_name="filename.doc" )
{
  $dir = "";
  if ((isset($file))&&(file_exists($dir.$file))) {
    header('Content-type: application/force-download');
    header('Content-Disposition: inline; filename="' . $dir.$file . '"');
    header('Content-Transfer-Encoding: Binary');
    header('Content-length: '.filesize($dir.$file));
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename="'.$new_name.'"');
    readfile("$dir$file");
  } else {
    echo "No file selected";
  }
}

$file = 'myfile.doc';
$filename = "download";
$original_path = 'path/to/myfile.doc';
$file_new_name = $filename.".".end(explode(".",$original_path));
force_download($original_path,$file_new_name);
?>

You will need to validate that the file does not provide access to your code, files you do not want to download, and so on.

Recent Posts

Unveiling the Truth: Is the Spread of Sinus Infections a Myth or Reality?

Sinus infections, impacting approximately 31 million Americans each year, represent a significant health concern stemming…

20 hours ago

ARTIFICIAL INTELLIGENCE: Advantages And Disadvantages? Everything You Need to Know

Pros And Cons Of AI: Artificial Intelligence directly translates to conceptualizing and building machines that…

1 day ago

Four common mistakes when picking an internet provider

We all live on the internet; we use it for everything. Thus, when it comes…

1 day ago

What Is Commonly Misdiagnosed as Pink Eye: Understanding Eye Conditions and Their Symptoms

Introduction: Pink eye, or conjunctivitis, is a common eye condition characterized by redness and inflammation…

2 days ago

Why Flexible Financing is the Future of Small Business

Small businesses are the backbone of the economy. Still, they often face daunting hurdles when…

2 days ago

Warm Comfort: Choosing the Best Hot Water Bottle for Cozy Nights

Introduction: As the chill of winter settles in or a bout of cold weather strikes,…

3 days ago