点击浏览,将所选的文件上传到创建的images文件夹内
代码如下:
1.wenjian.php
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd" >
<html xmlns= "http://www.w3.org/1999/xhtml" >
<head>
<meta http-equiv= "content-type" content= "text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<h1>上传文件</h1>
<form action= "chuli.php" method= "post" enctype= "multipart/form-data" >
请选择文件:<input type= "file" name= "file" /><input type= "submit" value= "上传" />
</form>
</body>
</html>
|
2.chuli.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
<?php
//取文件信息
$arr = $_files [ "file" ];
//var_dump($arr);
//加限制条件
//1.文件类型
//2.文件大小
//3.保存的文件名不重复
if (( $arr [ "type" ]== "image/jpeg" || $arr [ "type" ]== "image/png" ) && $arr [ "size" ]<10241000 )
{
//临时文件的路径
$arr [ "tmp_name" ];
//上传的文件存放的位置
//避免文件重复:
//1.加时间戳.time()加用户名.$uid或者加.date('ymdhis')
//2.类似网盘,使用文件夹来防止重复
$filename = "./images/" . date ( 'ymdhis' ). $arr [ "name" ];
//保存之前判断该文件是否存在
if ( file_exists ( $filename ))
{
echo "该文件已存在" ;
}
else
{
//中文名的文件出现问题,所以需要转换编码格式
$filename = iconv( "utf-8" , "gb2312" , $filename );
//移动临时文件到上传的文件存放的位置(核心代码)
//括号里:1.临时文件的路径, 2.存放的路径
move_uploaded_file( $arr [ "tmp_name" ], $filename );
}
}
else
{
echo "上传的文件大小或类型不符" ;
}
|
以上所述是小编给大家介绍的php实现文件上传功能实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对服务器之家网站的支持!
原文链接:http://www.cnblogs.com/zhaohui123/archive/2017/05/18/6874110.html