Home  >  Article  >  Backend Development  >  PHP implements simple image upload (type can be restricted)_PHP tutorial

PHP implements simple image upload (type can be restricted)_PHP tutorial

WBOY
WBOYOriginal
2016-07-21 14:54:531217browse

Copy to ClipboardLiehuo.Net Codes引用的内容:[www.bkjia.com] $uptypes = array(
'image/jpg',
'image/jpeg',
'image/png',
'image/pjpeg',
'image/gif',
'image/bmp',
'image/x-png'
);

代码:

Copy to ClipboardLiehuo.Net Codes引用的内容:[www.bkjia.com]





图片上传:





Hint: Maximum File Size: 500KB File Format: *.jpg *.gif *.png

代码:

Copy to ClipboardLiehuo.Net Codes引用的内容:[www.bkjia.com] if($_POST['Submit']=='上传'){

$file = $_FILES["upfile"];
$fname = $_FILES["upfile"]["name"];
$fname_array = explode('.',$fname);
$extend = $fname_array[count($fname_array)-1];
$MAX_FILE_SIZE = 512000;
//文件当前位置创建picture文件夹,若要在上一层目录创建则为"../picture/";
$dest_folder = "picture/";
if($extend!=""){
if(!in_array($file["type"],$uptypes)){
echo "只能上传图片文件!";
exit;
}
if($file["size"]>$MAX_FILE_SIZE){
echo "图片大小不能超过512KB!";
exit;
}
if(!file_exists($dest_folder)){
mkdir($dest_folder);
}
$randval = date('Ymd').rand();
$uploadfile = $dest_folder.$randval.'.'.$extend;
echo 'uploadfile: '.$uploadfile ;
if(move_uploaded_file($_FILES["upfile"]["tmp_name"],$uploadfile)){
echo "图片上传成功!";
}else{
echo "图片上传失败!";
}
}
}
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/364504.htmlTechArticleCopy to Clipboard 引用的内容: [www.veryhuo.com] $uptypes = array( 'image/jpg', 'image/jpeg', 'image/png', 'image/pjpeg', 'image/gif', 'image/bmp', 'image/x-png' ); 代码:...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn