php 文件上传的简单示例

前端之家收集整理的这篇文章主要介绍了php 文件上传的简单示例前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
感兴趣的小伙伴,下面一起跟随编程之家 jb51.cc的小编来看看吧。
经测试代码如下:

<?PHP
/**
 * 文件上传
 *
 * @param 
 * @arrange (512.笔记) jb51.cc
 **/
//if they DID upload a file...
if($_FILES['photo']['name'])
{
 //if no errors...
 if(!$_FILES['photo']['error'])
 {
  //now is the time to modify the future file name and validate the file
  $new_file_name = strtolower($_FILES['photo']['tmp_name']); //rename file
  if($_FILES['photo']['size'] > (1024000)) //can't be larger than 1 MB
  {
   $valid_file = false;
   $message = 'Oops!  Your file\'s size is to large.';
  }
 
  //if the file has passed the test
  if($valid_file)
  {
   //move it to where we want it to be
   move_uploaded_file($_FILES['photo']['tmp_name'],'uploads/'.$new_file_name);
   $message = 'Congratulations!  Your file was accepted.';
  }
 }
 //if there is an error...
 else
 {
  //set that to be the returned message
  $message = 'Ooops!  Your upload triggered the following error:  '.$_FILES['photo']['error'];
 }
}
 
//you get the following information for each file:
$_FILES['field_name']['name']
$_FILES['field_name']['size']
$_FILES['field_name']['type']
$_FILES['field_name']['tmp_name']


/*** 来自:编程之家 jb51.cc(jb51.cc) ***/ 
?>
原文链接:https://www.f2er.com/php/528770.html

猜你在找的PHP相关文章