PHP forces file download (avoid files or images being opened directly in the browser)
Release: 2016-07-25 09:00:51
Original
1402 people have browsed it
-
-
- /**
- * The FLEA_Helper_SendFile class is used to send files to the browser
- *
- * Using FLEA_Helper_SendFile, applications can save important files in
- * locations that are inaccessible to the browser. The file contents are then sent to the browser through the program.
- * @site http://bbs.it-home.org
- */
- class FLEA_Helper_SendFile
- {
- /**
- * Send the file content to the browser
- *
- * @param string $serverPath The path of the file on the server (absolute or relative path)
- * @param string $filename The file name sent to the browser (do not use Chinese if possible)
- * @param string $mimeType indicates the file type
- */
- function sendFile($serverPath, $filename, $mimeType = 'application/octet- stream')
- {
- header("Content-Type: {$mimeType}");
- $filename = '"' . htmlspecialchars($filename) . '"';
- $filesize = filesize($serverPath);
- $ charset = FLEA::getAppInf('responseCharset');//According to the actual file encoding type, such as utf-8, gbk
- header("Content-Disposition: attachment; filename={$filename}; charset={$charset}" );
- header('Pragma: cache');
- header('Cache-Control: public, must-revalidate, max-age=0');
- header("Content-Length: {$filesize}");
- readfile($serverPath);
- exit;
- }
- }
Copy code
|
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Articles by Author
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31