PHPファイルダウンロードクラスコード、PHPファイルダウンロード処理クラス
リリース: 2016-07-25 08:51:27
-
-
/* - * 関数: ファイルのダウンロード
- */
- /**
- * 使用法: $download = new Download();
- * //パラメータを設定します
- * $download->set_file_dir("c:/");
- * $download->set_file_name("boot.ini") ;
- * $download->set_read_bytes(1024);
- * //ファイルのダウンロード処理操作
- * $download->deal_with();
- * //ファイルが存在するかどうかを判定します
- * if($download->is_file_exist ()){
- *echo "file_exist";
- *}else{
- *echo "file_not_exist";
- *}
- */
- class Download {
- private $file = null;//ファイルハンドル
- private $file_dir = "";//ファイルが存在するディレクトリ
- private $file_name = "";//ファイル名
- private $file_exist = false;//ファイルが存在するかどうかを示します。デフォルトは
- privateではありません$read_bytes = 0;//ファイルから読み取ったバイト数
- private $mode = "r";//ファイルのアクセスタイプ
public function __construct(){
- } p>
- < ;p>public function __destruct(){
- if(null != $this->file){
- fclose($this->file);
- }
- }
- < p>/* *
- * ファイルのダウンロード処理操作
- */ bbs.it-home.org
- public function deal_with(){
- //完全なファイルパス
- $file_path = $this->file_dir .< /p>
-
//ファイルが存在するか確認します
- if (file_exists($file_path)) {
- $this->file_exist = true;
//ファイルを開きます
- $this-> file = fopen($file_path, $this->mode);
// 入力ファイルタグ
- Header("Content-type: application/octet-stream") );
- Header(" Accept-Range: バイト");
- Header("Accept-Length: " . filesize($file_path));
- Header("Content-Disposition:attachment; filename=" . $this-> file_name); p>
//ファイルの内容を出力します
- while(!feof($this->file))
- {
- $out = fread($this->file, $this- >read_bytes);
- if(!get_magic_quotes_gpc())
- {
- echo $out;
- }
- else
- {
- echotripslashes($out);
- }
- }
- //echo fread($file, filesize($ file_dir . $file_name)) ;
- }
- }
/**
- * 戻り値は true または false で、その値はファイルが存在するかどうかを判断するために使用されます
- */
- public function is_file_exist(){
- return $this->file_exist;
- } p>
* パラメータの型は文字列です - */
- public function set_file_dir($file_dir=""){
- $this->file_dir = $file_dir;
- }
/**
- * パラメータの型は文字列です
- */
- public function set_file_name($file_name=""){
- $this->file_name = $file_name;
- }
/**
- * パラメータの型は整数です
- * /
- public function set_read_bytes( $read_bytes=1024){
- $this->read_bytes = $read_bytes;
- }
- }
- ?>
-
コードをコピー
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
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