程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP上傳類實現單個和批量上傳

PHP上傳類實現單個和批量上傳

編輯:關於PHP編程

PHP上傳類還是比較常用的,於是我研究了一下PHP上傳類,在這裡拿出來和大家分享一下,希望對大家有用。PHP本身是一種簡單而強大的語言。PHP語言擁有核心特性如強大的字符串和數組處理能力,同時極大的改進了對面向對象編程的支持(PHP5以上版本)。

通過使用標准的和可選的擴展模塊,PHP應用程序可以連接MySQL或Oracle等十幾種數據庫、繪圖、創建PDF文件和創建解析XML文件。你也可以使用C語言來寫自己的PHP擴展模塊。例如,在已存在的代碼庫中提供一個PHP的接口函數。你也可以在Windows下運行PHP,使用COM控制其它諸如Word和Excel的Windows應用程序,或者使用ODBC來連接數據庫。在國內,PHP曾經和微軟的ASP並駕齊驅,是大家常用的網絡編程語言。 

PHP上傳類代碼:

  1. <?php 
  2. /**  
  3. *@packagemyFrameworkuploadclass  
  4. *@Descriptionuploadclass  
  5. *@Date2007-11-28  
  6. *@authorantsnet  
  7. *@copyrighthttp://www.antsnet.net  
  8. *@[email protected]  
  9. *@Environment:Apache2.0.59+PHP5.2.5+mysql5.0  
  10. *@version$Id:myFrame_Upload.php22008-02-2701:14:05ZAdministrator$  
  11. */  
  12. classmyFrame_UploadextendsmyFrame  
  13. {  
  14. var$uploadPath="uploadFile/";  
  15. var$fullPath='';  
  16. var$message;  
  17. var$_debug=false;  
  18. var$errorMessage='';  
  19.  
  20. function__construct($uploadPath='')  
  21. {  
  22. if($uploadPath!="")  
  23. {  
  24. $this->uploadPath=$uploadPath;  
  25. }  
  26. }  
  27. /**  
  28. *Batchupload  
  29. *  
  30. *@paramArray$arrayOutPut  
  31. */  
  32. publicfunctionformLocalBatch($keepSource=false,$arrayOutPut='')  
  33. {  
  34. $returnArray=array();  
  35. if(sizeof($_FILES)==$arrayOutPut&&!$keepSource)  
  36. {  
  37. $i=0;  
  38. foreach($_FILESas$index=>$value)  
  39. {  
  40. $returnArray[]=$this->fromLocal($value,$outPutName[$i]);  
  41. $i++;  
  42. }  
  43. }else{  
  44. foreach($_FILESas$index=>$value)  
  45. {  
  46. $returnArray[]=$this->fromLocal($value);  
  47. }  
  48. }  
  49. return$returnArray;  
  50. }  
  51. /**  
  52. *Uploadfileformlocal  
  53. *  
  54. *@paramArray|String$file_Area_Name  
  55. *@paramArray|String$outPutName  
  56. */  
  57. publicfunctionfromLocal($VALUE,$outPutName='')  
  58. {  
  59.  
  60. include_once(SERVERROOT.MYFRAME.'myFrame_Basic.php');  
  61. /**  
  62. *thefollowingforsingle  
  63. */  
  64. if($outPutName==''||$outPutName=="NULL")  
  65. {  
  66. $outPutName=date("YmdHis");  
  67. }  
  68. if($VALUE['error']>0)  
  69. {  
  70. switch($VALUE['errror'])  
  71. {  
  72. case'1':  
  73. $this->errorMessage[]=$this->myFrameMessage['false']['file']['max'];  
  74. returnfalse;  
  75. break;  
  76. case'2':  
  77. $this->errorMessage[]=$this->myFrameMessage['false']['file']['maxDefined'];  
  78. returnfalse;  
  79. break;  
  80. case'3':  
  81. $this->errorMessage[]=$this->myFrameMessage['false']['file']['uncomplite'];  
  82. returnfalse;  
  83. break;  
  84. case'4':  
  85. $this->errorMessage[]=$this->myFrameMessage['false']['file']['unupload'];  
  86. returnfalse;  
  87. break;  
  88.  
  89. }  
  90. }  
  91. $fileName=$this->uploadPath.$outPutName.myFrame_Basic::getFileName($VALUE['name']).myFrame_Basic::getFileExt($VALUE['name']);  
  92. if(is_uploaded_file($VALUE['tmp_name']))  
  93. {  
  94. if(!move_uploaded_file($VALUE['tmp_name'],$fileName))  
  95. {  
  96. $this->errorMessage[]=$this->myFrameMessage['false']['file']['move'];  
  97. returnfalse;  
  98. }else{  
  99. return$fileName;  
  100. }  
  101. }  
  102. }  
  103. /**  
  104. *Uploadfromnetwork  
  105. *  
  106. *@paramArray|String$url  
  107. *@paramArray|String$outPutName  
  108. *@paramBool$keepSource  
  109. */  
  110. publicfunctionfromNet($url,$outPutName='',$keepSource=false)  
  111. {  
  112. include_once(SERVERROOT.MYFRAME.'myFrame_Basic.php');  
  113. if($outPutName=="")  
  114. {  
  115. $outPutName=date("YmdHis");  
  116. }  
  117. $fileType=myFrame_Basic::getFileExt($url);  
  118. $fileName=$outPutName.$fileType;  
  119. $contents=file_get_contents($url);  
  120. $return=file_put_contents($this->uploadPath.$fileName,$contents);  
  121. if($return){  
  122. $this->fullPath=$this->uploadPath.$fileName;  
  123. return$this->fullPath;  
  124. }else{  
  125. $this->errorMessage[]=$this->myFrameMessage['false']['file']['url'];  
  126. returnfalse;  
  127. }  
  128. }  


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