Chinaunix首页 | 论坛 | 博客
  • 博客访问: 292490
  • 博文数量: 84
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: -10
  • 用 户 组: 普通用户
  • 注册时间: 2016-07-05 09:11
文章分类
文章存档

2015年(1)

2014年(6)

2013年(8)

2012年(1)

2011年(6)

2010年(2)

2009年(16)

2008年(44)

我的朋友

分类:

2008-05-19 18:56:40

功能:实现文件上传:
文件:index2.html upload.php
[root@localhost htdocs]# cat index2.html


  文件上传实例


上传新文件



 
  上传文件:
 


 
=================================================
[root@localhost htdocs]# cat upload.php
  上传文件...


上传文件...


  if ($_FILES['userfile']['error'] > 0)
  {
    echo '上传错误: ';
    switch ($_FILES['userfile']['error'])
    {
      case 1:  echo '上传文件大小超出了PHP配置文件中的约定值:upload_max_filesize';  break;
      case 2:  echo '上传文件大小超出了表单中的约定值: max_file_size';  break;
      case 3:  echo '文件只被部分上载';  break;
      case 4:  echo '没有上传任何文件';  break;
    }
    exit;
  }
  // Does the file have the right MIME type?
  if ($_FILES['userfile']['type'] != 'text/plain')
  {
    echo '问题: 文件不是一个文本文件。';
    exit;
  }
  // put the file where we'd like it
  $upfile = $_FILES['userfile']['name'];
  if (is_uploaded_file($_FILES['userfile']['tmp_name'])) //判断是否为上传文件
  {
     if (!move_uploaded_file($_FILES['userfile']['tmp_name'], $upfile))//移动文件
     {
        echo '问题: 不能将文件移动到指定目录。';
        exit;
     }
  }
  else
  {
    echo '问题: 上传文件不是一个合法文件: ';
    echo $_FILES['userfile']['name'];
    exit;
  }

  echo 'File uploaded successfully

';
  // reformat the file contents
  $fp = fopen($upfile, 'r');
  $contents = fread ($fp, filesize ($upfile));
  fclose ($fp);
 
  $contents = strip_tags($contents);
  $fp = fopen($upfile, 'w');
  fwrite($fp, $contents);
  fclose($fp);
  // show what was uploaded
  echo 'Preview of uploaded file contents:

';
  echo $contents;
  echo '

';
?>

===================================
 
授权:
chmod a+w htdocs/
 
阅读(2125) | 评论(0) | 转发(0) |
0

上一篇:MQ6.0操作手册

下一篇:linux启动体系

给主人留下些什么吧!~~