Blogger Information
Blog 81
fans 1
comment 0
visits 124036
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
php文件上传
有什么是忘不了的的博客
Original
759 people have browsed it

文件上传,其实手册里写的已经很清楚了。自己不想去翻手册,顺便加深一下印象。

文件上传用到的标签和函数。

        HTML:    form 表单 ,input 

        PHP:       $_FILES ,      move_uploaded_file()

    没有多少东西。

这里说一下需要注意的事项(代码下面有):

             from:表单提交方式必须是POST, 必须写 上 enctype="multipart/form-data"

             $_FILES['file']['name']        保存着文件的名称

             $_FILES['file']['tmp_name']         保存着文件的临时路径

             $_FILES['file']['size']         保存着文件的临时路径

             $_FILES['file']['type']         保存着文件的格式如:"image/jpeg"

             $_FILES['file']['error']         保存着文件上传错误编号。如:(0,1,2,3,4,6,7)

              move_uploaded_file(旧地址,新地址):就是一个移动文件的函数,把文件从一个储存地址移动到另一个储存地址。

单文件上传实例

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>Document</title>
</head>
<body>
	<form action="" method="post"  enctype="multipart/form-data">
		<input type="file" name="file">
		<input type="submit">
	</form>
	
</body>
</html>
<?php 
	$name = $_FILES['file']['name'];
	$tmp_name = $_FILES['file']['tmp_name'];
	$zhuan =  move_uploaded_file($tmp_name, $name);
	if ($zhuan) {
		echo "<script>alert('上传成功')</script>";
	}

 ?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post