Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

php: download variable content as file

Is the subject possible? I have a script executing. At one point I have a large piece of text in a variable. Could I make it available as a downloadable file without actually writing variable content to disk?

<?php
    echo "Hello";
    //how do I make the content of this variable downloadable?
    $download_me = "download me...";
    echo "Bye";
?>
like image 995
facha Avatar asked Sep 13 '10 12:09

facha


2 Answers

If you mean letting the user click a link and have a dialog box pop up to save certain content as a text file:

<?php
$download_me = "download me...";
header("Content-type: text/plain");
header("Content-Disposition: attachment; filename=test.txt");
echo $download_me;
?>

Is that what you're aiming at? Also, you might want to write a few lines that only allows the headers to be sent this way if a certain $_POST or $_GET variable is set.

like image 187
d2burke Avatar answered Nov 20 '22 20:11

d2burke


It should look like this:

<?php
  header("Content-type: text/plain");
  header("Content-Disposition: attachment; filename='whatever.txt'");
  echo $your_text;
?>
like image 30
Thariama Avatar answered Nov 20 '22 20:11

Thariama