表单里包含php文件路径,
赞
踩
对于中文网页需要使用<meta charset="utf-8">声明编码,否则会出现乱码。
<meta charset="utf-8">
<form>
<form action="1.php">
需要注意的是:默认情况下,enctype的值是application/x-www-form-urlencoded,不能用于文件上传,只有使用了multipart/form-data,才能完整的传递文件数据,
enctype
application/x-www-form-urlencoded
multipart/form-data
<form action="1.php" enctype="multipart/form-data">
<form action="1.php" enctype="multipart/form-data" method="POST">
<input>
type="file" name="file"
<input type="submit" value="上传">
<html> <head> <meta charset="UTF-8"> <title>上传</title> </head> <body> <form action="3.php" enctype="multipart/form-data" method="post" > 请选择上传文件:<input type="file" name="file"> <input type="submit"> </form> </body> </html>
$shangchuan = $_FILES['file'];
if判断条件是否符合
设置上传类型
设置接收类型
if ($shangchuan['type'] == "image/jpg" or $shangchuan['type'] == "text/plain")
{echo '失败--类型不符'; die();}
if ($shangchuan['size'] > 800000)
{echo '失败--大小不符'; die();}
copy($shangchuan['tmp_name'], 'D:\\' . $shangchuan['name']);echo '输出:成功';
<?php //1、设置编码utf8 header("Content-Type: text/html; charset=UTF-8"); //2、获取文件信息 $shangchuan = $_FILES['file']; if ($shangchuan['type'] == "image/jpg" or $shangchuan['type'] == "text/plain") { //9、输出:失败 echo '失败--类型不符'; die(); } if ($shangchuan['size'] > 800000) { //9、输出:失败 echo '失败--大小不符'; die(); } //7、移动临时文件到上传的文件存放位置(核心代码) copy($shangchuan['tmp_name'], 'D:\\' . $shangchuan['name']); //8、输出:成功 echo '输出:成功'; ?>
大功告成,完成上传。