程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> Pear:HTTP_Upload簡介

Pear:HTTP_Upload簡介

編輯:關於PHP編程

Pear的HTTP_Upload類庫提供了一個封裝好的html表單文件上傳處理程序,使用Pear的error系統。

特點
能一次處理多個文件的上傳
容易校驗文件的上傳狀態,限制不期望的文件上傳
多語種的報錯提示信息(還沒有中文,不過可以擴展)
單個文件上傳的例子
index.htm

PLAIN TEXT
CODE:
<form action="./files.php"enctype="multipart/form-data">
File1: <input type="file"name="userfile"><br>
<input type="submit"name="submit"value="Upload!">
</form>
files.php

PLAIN TEXT
PHP:
<?php
requireHTTP/Upload.php;
$upload=newHTTP_Upload(es);
// Language for error messages
$file=$upload->getFiles(userfile);
// return a file object or error
if(PEAR::isError($file)){
   die($file->getMessage());
}
// Check if the file is a valid upload
if($file->isValid()){   // this method will return the name of the file you moved,  
   // useful for example to save the name in a database  
   $file_name=$file->moveTo(./uploads_dir/);
   if(PEAR::isError($file_name)){
       die($file_name->getMessage());
   }
}
?>
多文件上傳的例子

PLAIN TEXT
CODE:
<form action="files.php"enctype="multipart/form-data">
Image1: <input type="file"name="userfile[]">
<br>Image2: <input type="file"name="userfile[]">
<br>Image3: <input type="file"name="userfile[]">
<br><input type="submit"name="sub"value="Upload!"></form>
PLAIN TEXT
PHP:
<?php
$files=$upload->getFiles();// returns an array of file objects or error
foreach($filesas$file){
   if($file->isValid()){
      ...  
   }
}?>
下載
http://pear.php.net/package/HTTP_Upload

版權聲明:可以任意轉載,轉載時請務必以超鏈接形式標明文章原始出處和作者信息及本聲明

作者:volcano發表於8月 30, 2006 at 9:58 am

版權信息:可以任意轉載, 轉載時請務必以超鏈接形式標明文章原始出處和作者信息及此聲明

永久鏈接 - http://www.ooso.net/index.php/archives/240

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved