send a file to client

2019-01-14 07:57发布

I want to write a text file in the server through Php, and have the client to download that file.

How would i do that?

Essentially the client should be able to download the file from the server.

5条回答
萌系小妹纸
2楼-- · 2019-01-14 08:35

In addition to the data already posted, there is a header you might want to try.

Its only a suggestion to how its meant to be handled, and the user agent can chose to ignore it, and simply display the file in the window if it knows how:

<?php

 header('Content-Type: text/plain');         # its a text file
 header('Content-Disposition: attachment');  # hit to trigger external mechanisms instead of inbuilt

See Rfc2183 for more on the Content-Disposition header.

查看更多
神经病院院长
3楼-- · 2019-01-14 08:41

Just post a link on the site to http://example.com/textfile.php

And in that PHP file you put the following code:

<?php
header('Content-Type: text/plain');
print "The output text";
?>

That way you can create the content dynamic (from a database)... Try to Google to oter "Content-Type" if this one is not the one you are looking for.

查看更多
可以哭但决不认输i
4楼-- · 2019-01-14 08:43

If you set the content type to application/octet-stream, the browser will ALWAYS offer file as a download, and will never attempt to display it internally, no matter what type of file it is.

<?php
  filename="download.txt";
  header("Content-type: application/octet-stream");
  header("Content-disposition: attachment;filename=$filename");

  // output file content here
?>
查看更多
聊天终结者
5楼-- · 2019-01-14 08:56

PHP has a number of very simplistic, C-like functions for writing to files. Here is an easy example:

<?php
// first parameter is the filename
//second parameter is the modifier: r=read, w=write, a=append
$handle = fopen("logs/thisFile.txt", "w");

$myContent = "This is my awesome string!";

// actually write the file contents
fwrite($handle, $myContent);

// close the file pointer
fclose($handle);
?>

It's a very basic example, but you can find more references to this sort of operation here:

PHP fopen

查看更多
Emotional °昔
6楼-- · 2019-01-14 09:00

This is the best way to do it, supposing you don't want the user to see the real URL of the file.

<?php
  $filename="download.txt";
  header("Content-disposition: attachment;filename=$filename");
  readfile($filename);
?>

Additionally, you could protect your files with mod_access.

查看更多
登录 后发表回答