Downloaden einer Datei erzwingen

Nie mehr wieder Rechtsklick -> Ziel Speichern unter ..

Ab und an steht man vor dem Problem, das man Dateien zum Download anbieten, was ja ganz gut funktioniert bei Dateien die ein Browser nicht darstellen kann.

Wenn man nun aber Dateien anbieten will, welche eventuell vom Browser dargestellt werden, wie zum Beispiel .txt, .pdf oder einige Mediaformate, kommt man um etwas PHP nicht herum.

Dazu bedient man sich der header-Funktion.

1
2
3
4
5
<?php
$datei = 'pfad/zur/datei.txt';
header("Content-Disposition: attachment;");
readfile($datei);
?>

Die erste Zeile sagt dem Browser das es sich um einen Anhang handelt und die Zweite liest die Datei in das Script ein.

Nun ist es so, das diese beiden Zeilen noch nicht ganz ausreichen, denn der Browser gibt der runtergeladenen Datei den Namen der Scriptdatei auf dem Server, in der dieses Script steht. So trägt sie dann als Beispiel den Namen “download.php”.

Also muss das Script noch etwas erweitert werden, damit die Datei auch den richtigen Namen erhält.

1
2
3
4
5
6
<?php
$datei = 'pfad/zur/datei.txt';
header("Content-type: " . mime_content_type($datei));
header("Content-Disposition: attachment; filename = $datei");
readfile($datei);
?>

Die Funktion mime_content_type() liefert den MIME-Typ einer Datei zurück.

Leider funktioniert dies nicht immer einwandfrei, also muss man etwas nachhelfen mittels einer eigenen Funktion.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
if (!function_exists('mime_content_type')) {
      function mime_content_type($filename) {
            $mime = array(
            '.ai' => 'application/postscript',
            '.aif' => 'audio/x-aiff',
            '.aifc' => 'audio/x-aiff',
            '.aiff' => 'audio/x-aiff',
            '.asc' => 'text/plain',
            '.au' => 'audio/basic',
            '.avi' => 'video/x-msvideo',
            '.bcpio' => 'application/x-bcpio',
            '.bin' => 'application/octet-stream',
            '.c' => 'text/plain',
            '.cc' => 'text/plain',
            '.ccad' => 'application/clariscad',
            '.cdf' => 'application/x-netcdf',
            '.class' => 'application/octet-stream',
            '.cpio' => 'application/x-cpio',
            '.cpt' => 'application/mac-compactpro',
            '.csh' => 'application/x-csh',
            '.css' => 'text/css',
            '.dcr' => 'applicatio/x-director',
            '.dir' => 'application/x-director',
            '.dms' => 'application/octet-stream',
            '.doc' => 'application/msword',
            '.drw' => 'application/drafting',
            '.dvi' => 'application/x-dvi',
            '.dwg' => 'application/acad',
            '.dxf' => 'application/dxf',
            '.dxr' => 'application/x-director',
            '.eps' => 'application/postscript',
            '.etx' => 'text/x-setext',
            '.exe' => 'application/octet-stream',
            '.ez' => 'application/andrew-inset',
            '.f' => 'text/plain',
            '.f90' => 'text/plain',
            '.fli' => 'video/x-fli',
            '.gif' => 'image/gif',
            '.gtar' => 'application/x-gtar',
            '.gz' => 'application/x-gzip',
            '.h' => 'text/plain',
            '.hdf' => 'application/x-hdf',
            '.hh' => 'text/plain',
            '.hqx' => 'application/mac-binhex40',
            '.htm' => 'text/html',
            '.html' => 'text/html',
            '.ice' => 'x-conference/x-cooltalk',
            '.ief' => 'image/ief',
            '.iges' => 'model/iges',
            '.igs' => 'model/iges',
            '.ips' => 'application/x-ipscript',
            '.ipx' => 'application/x-ipix',
            '.jpe' => 'image/jpeg',
            '.jpeg' => 'image/jpeg',
            '.jpg' => 'image/jpeg',
            '.js' => 'application/x-javascript',
            '.kar' => 'audio/midi',
            '.latex' => 'application/x-latex',
            '.lha' => 'application/octet-stream',
            '.lsp' => 'application/x-lisp',
            '.lzh' => 'application/octet-stream',
            '.m' => 'text/plain',
            '.man' => 'application/x-troff-man',
            '.me' => 'application/x-troff-me',
            '.mesh' => 'model/mesh',
            '.mid' => 'audio/midi',
            '.midi' => 'audio/midi',
            '.mif' => 'application/vnd.mif',
            '.mime' => 'www/mime',
            '.mov' => 'video/quicktime',
            '.movie' => 'video/x-sgi-movie',
            '.mp2' => 'audio/mpeg',
            '.mp3' => 'audio/mpeg',
            '.mpe' => 'video/mpeg',
            '.mpeg' => 'video/mpeg',
            '.mpg' => 'video/mpeg',
            '.mpga' => 'audio/mpeg',
            '.ms' => 'application/x-troff-ms',
            '.msh' => 'model/mesh',
            '.nc' => 'application/x-netcdf',
            '.oda' => 'application/oda',
            '.pbm' => 'image/x-portable-bitmap',
            '.pdb' => 'chemical/x-pdb',
            '.pdf' => 'application/pdf',
            '.pgm' => 'image/x-portable-graymap',
            '.pgn' => 'application/x-chess-pgn',
            '.php' => 'application/x-httpd-php',
            '.png' => 'image/png',
            '.pnm' => 'image/x-portable-anymap',
            '.pot' => 'application/mspowerpoint',
            '.ppm' => 'image/x-portable-pixmap',
            '.pps' => 'application/mspowerpoint',
            '.ppt' => 'application/mspowerpoint',
            '.ppz' => 'application/mspowerpoint',
            '.pre' => 'application/x-freelance',
            '.prt' => 'application/pro_eng',
            '.ps' => 'application/postscript',
            '.qt' => 'video/quicktime',
            '.ra' => 'audio/x-realaudio',
            '.ram' => 'audio/x-pn-realaudio',
            '.ras' => 'image/cmu-raster',
            '.rgb' => 'image/x-rgb',
            '.rm' => 'audio/x-pn-realaudio',
            '.roff' => 'application/x-troff',
            '.rpm' => 'audio/x-pn-realaudio-plugin',
            '.rtf' => 'text/rtf',
            '.rtx' => 'text/richtext',
            '.scm' => 'application/x-lotusscreencam',
            '.set' => 'application/set',
            '.sgm' => 'text/sgml',
            '.sgml' => 'text/sgml',
            '.sh' => 'application/x-sh',
            '.shar' => 'application/x-shar',
            '.silo' => 'model/mesh',
            '.sit' => 'application/x-stuffit',
            '.skd' => 'application/x-koan',
            '.skm' => 'application/x-koan',
            '.skp' => 'application/x-koan',
            '.skt' => 'application/x-koan',
            '.smi' => 'application/smil',
            '.smil' => 'application/smil',
            '.snd' => 'audio/basic',
            '.sol' => 'application/solids',
            '.spl' => 'application/x-futuresplash',
            '.src' => 'application/x-wais-source',
            '.step' => 'application/STEP',
            '.stl' => 'application/SLA',
            '.stp' => 'application/STEP',
            '.sv4cpio' => 'application/x-sv4cpio',
            '.sv4crc' => 'application/x-sv4crc',
            '.swf' => 'application/x-shockwave-flash',
            '.t' => 'application/x-troff',
            '.tar' => 'application/x-tar',
            '.tcl' => 'application/x-tcl',
            '.tex' => 'application/x-tex',
            '.texi' => 'application/x-texinfo',
            '.texinfo' => 'application/x-texinfo',
            '.tif' => 'image/tiff',
            '.tiff' => 'image/tiff',
            '.tr' => 'application/x-troff',
            '.tsi' => 'audio/TSP-audio',
            '.tsp' => 'application/dsptype',
            '.tsv' => 'text/tab-separated-values',
            '.txt' => 'text/plain',
            '.unv' => 'application/i-deas',
            '.ustar' => 'application/x-ustar',
            '.vcd' => 'application/x-cdlink',
            '.vda' => 'application/vda',
            '.viv' => 'video/vnd.vivo',
            '.vivo' => 'video/vnd.vivo',
            '.vrml' => 'model/vrml',
            '.wav' => 'audio/x-wav',
            '.wrl' => 'model/vrml',
            '.xbm' => 'image/x-xbitmap',
            '.xlc' => 'application/vnd.ms-excel',
            '.xll' => 'application/vnd.ms-excel',
            '.xlm' => 'application/vnd.ms-excel',
            '.xls' => 'application/vnd.ms-excel',
            '.xlw' => 'application/vnd.ms-excel',
            '.xml' => 'text/xml',
            '.xpm' => 'image/x-xpixmap',
            '.xwd' => 'image/x-xwindowdump',
            '.xyz' => 'chemical/x-pdb',
            '.zip' => 'application/zip',
            );
            return $mime[strrchr($filename, '.')];
      }
}
?>

Die hier aufgelisteten Typen sind beiweitem nicht alle, aber die Häufigsten.

Um nun etwas Verwirrung zu nehmen das komplette Script.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
<?php
if (!function_exists('mime_content_type')) {
      function mime_content_type($filename) {
            $mime = array(
            '.ai' => 'application/postscript',
            '.aif' => 'audio/x-aiff',
            '.aifc' => 'audio/x-aiff',
            '.aiff' => 'audio/x-aiff',
            '.asc' => 'text/plain',
            '.au' => 'audio/basic',
            '.avi' => 'video/x-msvideo',
            '.bcpio' => 'application/x-bcpio',
            '.bin' => 'application/octet-stream',
            '.c' => 'text/plain',
            '.cc' => 'text/plain',
            '.ccad' => 'application/clariscad',
            '.cdf' => 'application/x-netcdf',
            '.class' => 'application/octet-stream',
            '.cpio' => 'application/x-cpio',
            '.cpt' => 'application/mac-compactpro',
            '.csh' => 'application/x-csh',
            '.css' => 'text/css',
            '.dcr' => 'applicatio/x-director',
            '.dir' => 'application/x-director',
            '.dms' => 'application/octet-stream',
            '.doc' => 'application/msword',
            '.drw' => 'application/drafting',
            '.dvi' => 'application/x-dvi',
            '.dwg' => 'application/acad',
            '.dxf' => 'application/dxf',
            '.dxr' => 'application/x-director',
            '.eps' => 'application/postscript',
            '.etx' => 'text/x-setext',
            '.exe' => 'application/octet-stream',
            '.ez' => 'application/andrew-inset',
            '.f' => 'text/plain',
            '.f90' => 'text/plain',
            '.fli' => 'video/x-fli',
            '.gif' => 'image/gif',
            '.gtar' => 'application/x-gtar',
            '.gz' => 'application/x-gzip',
            '.h' => 'text/plain',
            '.hdf' => 'application/x-hdf',
            '.hh' => 'text/plain',
            '.hqx' => 'application/mac-binhex40',
            '.htm' => 'text/html',
            '.html' => 'text/html',
            '.ice' => 'x-conference/x-cooltalk',
            '.ief' => 'image/ief',
            '.iges' => 'model/iges',
            '.igs' => 'model/iges',
            '.ips' => 'application/x-ipscript',
            '.ipx' => 'application/x-ipix',
            '.jpe' => 'image/jpeg',
            '.jpeg' => 'image/jpeg',
            '.jpg' => 'image/jpeg',
            '.js' => 'application/x-javascript',
            '.kar' => 'audio/midi',
            '.latex' => 'application/x-latex',
            '.lha' => 'application/octet-stream',
            '.lsp' => 'application/x-lisp',
            '.lzh' => 'application/octet-stream',
            '.m' => 'text/plain',
            '.man' => 'application/x-troff-man',
            '.me' => 'application/x-troff-me',
            '.mesh' => 'model/mesh',
            '.mid' => 'audio/midi',
            '.midi' => 'audio/midi',
            '.mif' => 'application/vnd.mif',
            '.mime' => 'www/mime',
            '.mov' => 'video/quicktime',
            '.movie' => 'video/x-sgi-movie',
            '.mp2' => 'audio/mpeg',
            '.mp3' => 'audio/mpeg',
            '.mpe' => 'video/mpeg',
            '.mpeg' => 'video/mpeg',
            '.mpg' => 'video/mpeg',
            '.mpga' => 'audio/mpeg',
            '.ms' => 'application/x-troff-ms',
            '.msh' => 'model/mesh',
            '.nc' => 'application/x-netcdf',
            '.oda' => 'application/oda',
            '.pbm' => 'image/x-portable-bitmap',
            '.pdb' => 'chemical/x-pdb',
            '.pdf' => 'application/pdf',
            '.pgm' => 'image/x-portable-graymap',
            '.pgn' => 'application/x-chess-pgn',
            '.php' => 'application/x-httpd-php',
            '.png' => 'image/png',
            '.pnm' => 'image/x-portable-anymap',
            '.pot' => 'application/mspowerpoint',
            '.ppm' => 'image/x-portable-pixmap',
            '.pps' => 'application/mspowerpoint',
            '.ppt' => 'application/mspowerpoint',
            '.ppz' => 'application/mspowerpoint',
            '.pre' => 'application/x-freelance',
            '.prt' => 'application/pro_eng',
            '.ps' => 'application/postscript',
            '.qt' => 'video/quicktime',
            '.ra' => 'audio/x-realaudio',
            '.ram' => 'audio/x-pn-realaudio',
            '.ras' => 'image/cmu-raster',
            '.rgb' => 'image/x-rgb',
            '.rm' => 'audio/x-pn-realaudio',
            '.roff' => 'application/x-troff',
            '.rpm' => 'audio/x-pn-realaudio-plugin',
            '.rtf' => 'text/rtf',
            '.rtx' => 'text/richtext',
            '.scm' => 'application/x-lotusscreencam',
            '.set' => 'application/set',
            '.sgm' => 'text/sgml',
            '.sgml' => 'text/sgml',
            '.sh' => 'application/x-sh',
            '.shar' => 'application/x-shar',
            '.silo' => 'model/mesh',
            '.sit' => 'application/x-stuffit',
            '.skd' => 'application/x-koan',
            '.skm' => 'application/x-koan',
            '.skp' => 'application/x-koan',
            '.skt' => 'application/x-koan',
            '.smi' => 'application/smil',
            '.smil' => 'application/smil',
            '.snd' => 'audio/basic',
            '.sol' => 'application/solids',
            '.spl' => 'application/x-futuresplash',
            '.src' => 'application/x-wais-source',
            '.step' => 'application/STEP',
            '.stl' => 'application/SLA',
            '.stp' => 'application/STEP',
            '.sv4cpio' => 'application/x-sv4cpio',
            '.sv4crc' => 'application/x-sv4crc',
            '.swf' => 'application/x-shockwave-flash',
            '.t' => 'application/x-troff',
            '.tar' => 'application/x-tar',
            '.tcl' => 'application/x-tcl',
            '.tex' => 'application/x-tex',
            '.texi' => 'application/x-texinfo',
            '.texinfo' => 'application/x-texinfo',
            '.tif' => 'image/tiff',
            '.tiff' => 'image/tiff',
            '.tr' => 'application/x-troff',
            '.tsi' => 'audio/TSP-audio',
            '.tsp' => 'application/dsptype',
            '.tsv' => 'text/tab-separated-values',
            '.txt' => 'text/plain',
            '.unv' => 'application/i-deas',
            '.ustar' => 'application/x-ustar',
            '.vcd' => 'application/x-cdlink',
            '.vda' => 'application/vda',
            '.viv' => 'video/vnd.vivo',
            '.vivo' => 'video/vnd.vivo',
            '.vrml' => 'model/vrml',
            '.wav' => 'audio/x-wav',
            '.wrl' => 'model/vrml',
            '.xbm' => 'image/x-xbitmap',
            '.xlc' => 'application/vnd.ms-excel',
            '.xll' => 'application/vnd.ms-excel',
            '.xlm' => 'application/vnd.ms-excel',
            '.xls' => 'application/vnd.ms-excel',
            '.xlw' => 'application/vnd.ms-excel',
            '.xml' => 'text/xml',
            '.xpm' => 'image/x-xpixmap',
            '.xwd' => 'image/x-xwindowdump',
            '.xyz' => 'chemical/x-pdb',
            '.zip' => 'application/zip',
            );
            return $mime[strrchr($filename, '.')];
      }
}
$datei = 'pfad/zur/datei.txt';
$isfile = is_file($datei);
if (!headers_sent() and $isfile==true) {
      header("Content-type: " . mime_content_type($datei));
      header("Content-Disposition: attachment; filename = $datei");
      readfile($datei);
} else {
      echo "Datei gibt es nicht";
      echo "\n ?d=";
}
?>

Die Variable $datei kann man natürlich auch mit $_GET definieren.

Anmerkung:
Wichtig ist, das dieses Script an Anfang der Seite steht, da hier ein Header definiert wird. Es dürfen davor weder Leerzeichen noch Zeilenumbrüche stehen.

Viel Spaß damit.

Werbung

WordPress SEO Plugin

Über H.-Peter Pfeufer

Ich bin Webentwickler/ -programmierer aus Leidenschaft, WordPressbegeistert und ab und an auch mal ein netter Mensch.
Vor allen schreibe ich über alles was mit den Themen Webentwicklung/ -programmierung und WordPress zu tun hat. Nebenher auch mal einige Gedanken zu allgemeineren Themen.

Kategorie(n): PHP
Tags: , , , ,
Setze ein Lesezeichen auf den Permalink.

Hinterlasse eine Antwort

Deine E-Mail-Adresse wird nicht veröffentlicht. Erforderliche Felder sind markiert *

*

 

Du kannst folgende HTML-Tags benutzen: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>