明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

如何使用php+mysql保存與輸出文件

[摘要]本地文件上傳到服務器后,服務器的腳本對文件進行保存,一般有兩種方式,一種是作為 文件保存到機器的特定目錄下,但是這里就有很多諸如文件重名帶來的種種不便之處,有的程 序自動改文件名字,把名字加上上傳時間等方法以保證文件名的唯一性,這樣失去了文件的原 始名字,通過文件名查詢特定的文件信息也有很多困難,...
本地文件上傳到服務器后,服務器的腳本對文件進行保存,一般有兩種方式,一種是作為
文件保存到機器的特定目錄下,但是這里就有很多諸如文件重名帶來的種種不便之處,有的程
序自動改文件名字,把名字加上上傳時間等方法以保證文件名的唯一性,這樣失去了文件的原
始名字,通過文件名查詢特定的文件信息也有很多困難,不利于文件的統(tǒng)一管理;一種是把文
件保存到數(shù)據(jù)庫中利用數(shù)據(jù)庫的強大功能,可以方便的實現(xiàn)文件的各種操作。本文采用的是第
二種方法。

    這一組程序演示了,如何將硬盤的一個文件通過網(wǎng)頁,上傳到服務器的數(shù)據(jù)庫里面,并且
讀出文件的內(nèi)容。

使用說明:
一共有5個程序,說明如下:
1. file.sql      --- 本程序要用到的數(shù)據(jù)庫表的結(jié)構[注:數(shù)據(jù)庫用的是test]
2. upload.php    --- 上傳表單
3. submit.php    --- 上傳處理程序
4. show_info.php --- 顯示部分上傳的文件信息
5. show_add.php  --- 顯示[下載]文件

//////////////////////////////////////////////////////////////////////
(1)file.sql ---
//簡要說明
保存上傳得文件的基本信息的數(shù)據(jù)庫結(jié)構,此處注意保存文件內(nèi)容的字段,使用longtext類型
因為普通的blob類型最大存儲64K字節(jié)。另外,一般php的默認配置最大上傳文件為2M,如果上
傳的文件特別大,莫忘了調(diào)整php.ini的設置哦。
//文件源碼
create table receive(
    id int NOT NULL auto_increment, #主鍵,自動累加
    file_data longblob,             #文件內(nèi)容
    file_type varchar(100),         #文件類型
    file_name varchar(255),         #文件名字  
    file_size int,                  #文件大小
    PRIMARY KEY(id) #主鍵
)

//////////////////////////////////////////////////////////////////////
(2)upload.php ---
//簡要說明
上傳界面,用戶選擇文件,然后提交給submit.php處理
值得注意的是一個 MAX_FILE_SIZE的隱藏值域,通過設置其VALUE可  
以限制上載文件的大小。
//程序源碼
<html>   
<head>   
<title>文件上傳表單</title>   
</head>   
<body>   
<table>   
<form enctype='multipart/form-data' name='myform' action='submit.php'  
method='post'>   
<INPUT TYPE = "hidden" NAME = "MAX_FILE_SIZE" VALUE ="1000000">
<tr><td>選擇上傳文件</td><td>
<input name='myfile' type='file'></td></tr>  
<tr><td colspan='2'><input name='submit' value='上傳'   
type='submit'></td></tr>   
</table>   
</body>   
</html>

//////////////////////////////////////////////////////////////////////
(3)submit.php ---
//簡要說明
把用戶上傳得文件連同文件的基本信息保存到數(shù)據(jù)庫里
//程序源碼
<?php   
    if($myfile != "none" && $myfile != "") { //有了上傳文件了  

        //設置超時限制時間,缺省時間為 30秒,設置為0時為不限時
        $time_limit=60;          
        set_time_limit($time_limit); //

        //把文件內(nèi)容讀到字符串中
        $fp=fopen($myfile,  "rb");
        if(!$fp) die("file open error");
        $file_data = addslashes(fread($fp, filesize($myfile)));
        fclose($fp);
        unlink($myfile);  
             
        //文件格式,名字,大小
        $file_type=$myfile_type;
        $file_name=$myfile_name;
        $file_size=$myfile_size;
     
        //連接數(shù)據(jù)庫,把文件存到數(shù)據(jù)庫中
        $conn=mysql_connect("127.0.0.1","***","***");
        if(!$conn) die("error : mysql connect failed");
        mysql_select_db("test",$conn);
         
        $sql="insert into receive  
        (file_data,file_type,file_name,file_size)  
        values ('$file_data','$file_type','$file_name',$file_size)";
        $result=mysql_query($sql);
     
        //下面這句取出了剛才的insert語句的id
        $id=mysql_insert_id();
     
        mysql_close($conn);
         
        set_time_limit(30); //恢復缺省超時設置  
         
        echo "上傳成功--- ";
        echo "<a href='show_info.php?id=$id'>顯示上傳文件信息</a>";
    }   
    else {   
        echo "你沒有上傳任何文件";   
    }   
?>  

//////////////////////////////////////////////////////////////////////
(4)show_info.php ---
//簡要說明
從數(shù)據(jù)庫里取出文件的基本信息[文件名和文件大小]。
//程序源碼
<?php         
    if(!isset($id) or $id=="") die("error: id none");
     
    //定位記錄,讀出
    $conn=mysql_connect("127.0.0.1","***","***");
    if(!$conn) die("error: mysql connect failed");
    mysql_select_db("test",$conn);
     
    $sql =  "select file_name ,file_size from receive where id=$id";
    $result = mysql_query($sql);
    if(!$result) die(" error: mysql query");
     
    //如果沒有指定的記錄,則報錯
    $num=mysql_num_rows($result);
    if($num<1) die("error: no this recorder");
     
    //下面兩句程序也可以這么寫
    //$row=mysql_fetch_object($result);
    //$name=$row->name;
    //$size=$row->size;
    $name = mysql_result($result,0,"file_name");
    $size = mysql_result($result,0,"file_size");

    mysql_close($conn);

    echo "<hr>上傳的文件的信息:";
    echo "<br>The file's name - $name";   
    echo "<br>The file's size - $size";  
    echo "<br><a href=show_add.php?id=$id>附件</a>";
?>

//////////////////////////////////////////////////////////////////////
(5)show_add.php ---
//簡要說明
從數(shù)據(jù)庫里取出文件內(nèi)容
//程序源碼
<?php         
    if(!isset($id) or $id=="") die("error: id none");
     
    //定位記錄,讀出
    $conn=mysql_connect("127.0.0.1","***","***");
    if(!$conn) die("error : mysql connect failed");
    mysql_select_db("test",$conn);
    $sql    =  "select * from receive where id=$id";
    $result =  mysql_query($sql);
    if(!$result) die("error: mysql query");
     
    $num=mysql_num_rows($result);
    if($num<1) die("error: no this recorder");
     
    $data = mysql_result($result,0,"file_data");
    $type = mysql_result($result,0,"file_type");
    $name = mysql_result($result,0,"file_name");
         
    mysql_close($conn);
     
    //先輸出相應的文件頭,并且恢復原來的文件名
    header("Content-type:$type");
    header("Content-Disposition: attachment; filename=$name");
    echo $data;
?>

本程序在 win2000 pro + apache 1.13.19 + php 4.0.5 + mysql 3.23.36 下通過。