本文章来给各位初学者来介绍一个简单的PHP文件上传示例程序代码,有需要学习的朋友可进入参考参考.
实例代码如下:
- <?php
-
- function alert($msg){
- return '<script type="text/javascript">alert("'.$msg.'");window.history.back(-1);</script>';
- }
-
-
- $allowType = array('image/jpeg','image/gif','image/jpg');
-
-
- $filePath = './uploadFileDir/';
-
-
- $file = $_FILES['file'];
-
-
- if( $file['error'] !== 0 ){
- exit(alert('文件上传错误'));
- }
-
-
- if( $file['size'] > 102400 ){
- exit(alert('文件过大'));
- }
-
-
- if( !in_array(mime_content_type($file['tmp_name']),$allowType) ){
- exit(alert('文件类型错误'));
- }
-
-
- if( !file_exists($filePath) && !mkdir($filePath,0777,true) ){
- exit(alert('创建目录错误'));
- }
-
-
- $filename = time().'_'.$file['name'];
-
-
- if( !copy($file['tmp_name'],$filePath.$filename) ){
- exit(alert('上传文件出错,请稍候重试'));
- }
-
-
- unlink($file['tmp_name']);
-
-
- echo alert('恭喜,上传文件['.$filename.']成功!');
- ?>
|