<?php
$strPhyFileName = "FILE PATH HERE!!!";
$strSaveAs = "FILE NAME TO SAVE AS";
$size = filesize($strPhyFileName);
header("Content-Type: application/download");
header("Content-Length: $size");
header("Content-Disposition: attachment; filename=".$strSaveAs);
header("Content-Transfer-Encoding: binary");
$fh = fopen($strPhyFileName, "r");
fpassthru($fh);
?>
Computer, Technology, Databases, Google, Internet, Mobile, Linux, Microsoft, Open Source, Security, Social Media, Web Development, Business, Finance
Tuesday, July 08, 2008
Force Save As Download On a File in PHP
Subscribe to:
Post Comments (Atom)
Popular Posts
-
新加坡人口400万,亚洲人口4亿,全世界人口6亿。 但是,我一人可能就很有可能是世界最傻的了。我真是个不折不扣的大木头。真是受不了自己。
-
Just yesterday, popular food blogger, Brad Lau, who owns food blog ladyironchef , who had refused to pay the full cost of his 4-persons meal...
-
Singapore’s Land Transport Authority has just released an updated official MRT map including seven new stations on the Thomson-East Coast Li...
-
Despite the implementation of a mandatory plastic bag charge in local supermarkets in July 2023, recent data reveals that consumers still pu...
-
I recently wrote a code snippet to fill arrays with a value. The below method is a generic method that will accept different data types. Hop...
I recommend Google Code Prettify for you to embed any highlighted code into your blog.
ReplyDeleteThanks dude.
ReplyDeleteHaving the intention to use google's since months back but then never attempt to change.