php语言 百分网手机站

PHP图片上传类带图片显示

时间:2020-11-15 14:45:06 php语言 我要投稿

PHP图片上传类带图片显示

  这是一个PHP的文件上传类带图片显示的..其实做成函数就可以了.不过还是做成类好玩一点,就跟随百分网小编一起去了解下吧,想了解更多相关信息请持续关注我们应届毕业生考试网!

PHP图片上传类带图片显示

  本来应该用JS来验证上传文件类型的.但懒得做了.

  <!DOCTYPEhtmlPUBLIC"-//W3C//DTDXHTML1.0Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

  <htmlxmlns="http://www.w3.org/1999/xhtml">

  <head>

  <metahttp-equiv="Content-Type"content="text/html;charset=gb2312"/>

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

  </head>

  <body>

  <formid="form1"name="upload"enctype="multipart/form-data"method="post"action="upload.php">

  <inputtype="hidden"name="MAX_FILE_SIZE"/>

  <inputtype="file"name="file"/>

  <inputtype="submit"name="Submit"value="提交"/>

  </form>

  </body>

  </html>

  <?php

  Classupload

  {

  var$upload_name;

  var$upload_tmp_address;

  var$upload_server_name;

  var$upload_filetype;

  var$file_type;

  var$file_server_address;

  var$image_w=900;//要显示图片的宽

  var$image_h=350;//要显示图片的高

  var$upload_file_size;

  var$upload_must_size=50000;//允许上传文件的大小,自己设置

  functionupload_file()

  {

  $this->upload_name=$_FILES["file"]["name"];//取得上传文件名

  $this->upload_filetype=$_FILES["file"]["type"];

  $this->upload_server_name=date("Y_m_dH_i_s").$this->upload_name;

  $this->upload_tmp_address=$_FILES["file"]["tmp_name"];//取得临时地址

  $this->file_type=array("image/gif","image/pjpeg");//允许上传文件的类型

  $this->upload_file_size=$_FILES["file"]["size"];//上传文件的大小

  if(in_array($this->upload_filetype,$this->file_type))

  {if($this->upload_file_size<$this->upload_must_size)

  {

  echo("上传成功,谢谢支持");

  $this->file_server_address="D:usrwwwhtmlupload/".$this->upload_server_name;

  move_uploaded_file($this->upload_tmp_address,$this->file_server_address);//从TEMP目录移出

  echo("<imgsrc=$this->file_server_addresswidth=$this->image_wheight=$this->image_h/>");//显示图片

  }

  else

  {

  echo("文件容量太大");

  }

  }

  else

  {

  echo("不支持此文件类型,请重新选择");

  }

  }

  }

  $dd=newupload;

  $dd->upload_file();

  ?></p

【PHP图片上传类带图片显示】相关文章:

1.PHP文件上传源码分析

2.手机端图片压缩后上传base64

3.报考安全工程师怎么上传图片

4.php关于PHP上传入门学习知识点

5.PHP实现大文件上传源代码

6.如何显示word嵌入式的图片

7.PHP+jQuery+Ajax仿淘宝多上传按钮单文件上传

8.php显示时间的常用方法

9.IE浏览器不显示图片怎么办