php语言 百分网手机站

php实现文件上传及头像预览功能

时间:2020-08-09 10:50:22 php语言 我要投稿

php实现文件上传及头像预览功能

  php实现文件上传及头像预览功能的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下。

  php文件上传原理是通过form表单的enctype="multipart/form-data"属性将文件临时放到wamp文件夹中的tmp目录下,再通过后台php程序将文件保存在体统中。

  html代码:

  <form action="shangchuan.php" method="post" enctype="multipart/form-data">

  <input type="file" name="file" />

  <input type="submit" value="上传" />

  </form>

  后台处理界面(shangchuan.php):

  有以下几点需要注意:

  1.控制上传文件的类型

  2.控制上传文件的大小

  3.防止文件名重复

  修改保存的文件名

  用户名+时间戳+随机数+文件名

  流水号

  使用文件夹要提前建好路径。

  4.保存文件

  //判断文件上传是否出错

  if($_FILES["file"]["error"])

  {

  echo $_FILES["file"]["error"];

  }

  else

  {

  //控制上传文件的类型,大小

  if(($_FILES["file"]["type"]=="image/jpeg" || $_FILES["file"]["type"]=="image/png") && $_FILES["file"]["size"]<1024000)

  {

  //找到文件存放的位置

  $filename = "./file/".date("YmdHis").$_FILES["file"]["name"];

  //转换编码格式

  $filename = iconv("UTF-8","gb2312",$filename);

  //判断文件是否存在

  if(file_exists($filename))

  {

  echo "该文件已存在!";

  }

  else

  {

  //保存文件

  move_uploaded_file($_FILES["file"]["tmp_name"],$filename);

  }

  }

  else

  {

  echo "文件类型不正确!";

  }

  }

  点击上传后文件就保存在系统的`指定路径下。

  保存后按照指定方法重命名文件名:

  头像上传预览

  原理:在html界面做一个头像大小的p,设置上传头像的背景,在p里面做一个上传文件的input,透明度设置为0.

  这样,点击这个p就可以跟上传的效果相同。

  <title>无标题文档</title>

  <style type="text/css">

  #yl{ width:200px; height:300px; background-image:url(img/11.png); background-size:200px 300px;}

  #file{ width:200px; height:300px; float:left; opacity:0;}

  </style>

  </head>

  <body>

  <form id="sc" action="chuli.php" method="post" enctype="multipart/form-data" target="shangchuan">

  <input type="hidden" name="tp" value="" id="tp" />

  <p id="yl">

  <input type="file" name="file" id="file" onchange="document.getElementById('sc').submit()" />

  </p>

  </form>

  <iframe style="display:none" name="shangchuan" id="shangchuan">

  </iframe>

  </body>

  <script type="text/javascript">

  //回调函数,调用该方法传一个文件路径,该变背景图

  function showimg(url)

  {

  var p = document.getElementById("yl");

  p.style.backgroundImage = "url("+url+")";

  document.getElementById("tp").value = url;

  }

  </script>

  </html>

  php处理界面(chuli.php):

  <?php

  if($_FILES["file"]["error"])

  {

  echo $_FILES["file"]["error"];

  }

  else

  {

  if(($_FILES["file"]["type"]=="image/jpeg" || $_FILES["file"]["type"]=="image/png")&& $_FILES["file"]["size"]<1024000)

  {

  $fname = "./img/".date("YmdHis").$_FILES["file"]["name"];

  $filename = iconv("UTF-8","gb2312",$fname);

  if(file_exists($filename))

  {

  echo "<script>alert('该文件已存在!');</script>";

  }

  else

  {

  move_uploaded_file($_FILES["file"]["tmp_name"],$filename);

  unlink($_POST["tp"]);

  echo "<script>parent.showimg('{$fname}');</script>";

  }

  }

  }

【php实现文件上传及头像预览功能】相关文章:

PHP实现大文件上传源代码08-29

PHP文件上传源码分析09-04

PHP+jQuery+Ajax仿淘宝多上传按钮单文件上传08-16

PHP中读取大文件实现方法09-05

PHP中读取大文件实现方法详解09-23

PHP文件锁与进程锁的实现08-17

PHP文件是什么 如何打开PHP文件08-27

Dreamweaver中预览PHP和ASP09-11

PHP简单留言本功能的实现代码08-17

php关于PHP上传入门学习知识点09-16