码迷,mamicode.com
首页 > Web开发 > 详细

PHP上传文件(学习)

时间:2014-11-19 11:22:18      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:php

<?php
if(isset($_FILES['upfile']))
{
	if (is_uploaded_file($_FILES['upfile']['tmp_name'])){

$upfile=$_FILES["upfile"];

$name = $upfile["name"];
$type = $upfile["type"];
$size = $upfile["size"];
$tmp_name = $upfile["tmp_name"];
$error = $upfile["error"];
$ok=0;
switch($type)
{
	case 'image/pjpeg':
	$ok=1;
	break;
	case 'image/jpeg':
	$ok=1;
	break;
	case 'image/gif':
	$ok=1;
	break;
	case 'image/png':
	$ok=1;
	break;
}
if($ok==1&&$error=='0'){
	if(move_uploaded_file($tmp_name,'up/'.$name))
{
	echo "上传成功!";
}
}
else{
	echo "上传失败,请检查格式";
};
}
}

?>
<form enctype="multipart/form-data" method="post" name="upform">
<input name="upfile" type="file">
<input type="submit" value="上传">
</form>

PHP上传文件(学习)

标签:php

原文地址:http://blog.csdn.net/dapeng0112/article/details/41255633

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!