Blogger Information
Blog 35
fans 0
comment 0
visits 22346
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP基础知识(目录的遍历,文件上传练习)2018年8月30日17:43:03
Hi的博客
Original
552 people have browsed it

php的文件上传是很常用的一个功能.他的逻辑步骤一定要清晰.

以下是我的代码

实例

<?php
echo "<h3>遍历目录</h3>";
$we = opendir('../2018-8-28') or die('打开失败');//打开目录
while (false != ($w = readdir($we))) {//查询目录下的文件,readdir

    if ($w != "." && $w != "..") {//删除掉.和..操作
        print nl2br( $w."\n")."<br>";//换行显示
}
};
closedir($we);//关闭目录
//一个.是表示的是当前目录,两个..表示上一级的目录,这是相对路径.
echo '<hr>';
$we = scandir('./');//用目录扫描器,得出的结果是一个数组,保存在一个变量中
foreach ($we as $value) {//遍历数组,第一个值是数组,第二个值可以自定义名称
    if ($value != "." && $value != "..") {//去掉.和..
        echo "$value<br>";
    }
};
echo '<hr>';
?>
<?php echo "<h3>文件上传和检测</h3>";?>
<form action="<?php echo htmlspecialchars($_SERVER['PHP_SELF']); ?>" method="POST" enctype="multipart/form-data">

	<input type="hidden" name="MAX_FILE_SIZE" value="5242880"><!-- 设定一个隐藏域,限制上传的大小,仅做参考作用他的value值是字节单位-->
<!--    fieldset 标签将表单的一部分内容进行打包.legend标签是配合fieldset使用.设定一个表单的标题-->
    <fieldset>
		<legend align="center">文件上传</legend>
		<div><strong>选择文件:</strong><input type="file" name="myfile"></div><!--type="file" name="myfile" 第一个类型是上传的文件,第二个是对应本地的文件夹的名称 -->
	</fieldset>
	<div align="center"><button type="submit" name="submit" >上传</button></div>
</form>
<?php
//检测请求类型是否POST,如果不是应该提示用户类型不对
if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    //检测是否有文件被上传
    if (isset($_FILES['myfile'])) {
        //设置允许上传的文件类型
        $allow = ['image/jpg','image/jpeg', 'image/png'];
        if (in_array($_FILES['myfile']['type'], $allow)) {
            //将文件先移动到临时目录
            $w=$_FILES['myfile']['tmp_name'];//临时文件目录
            $e= "myfile/{$_FILES['myfile']['name']}";//服务器上的文件目录
            if (move_uploaded_file($w,$e )){
                //上传成功
                echo "<script>alert('文件上传成功')</script>";
            }
        }else {
            //提示格式不对
            echo "<script>alert('仅允许上传jpg和png格式的图片')</script>";
        }
    }
    //对上传错误进行处理
    @$a=$_FILES['myfile']['error'];
    if ( $a> 0 ) {
        echo '<p>错误原因是:<strong>';

        switch ($a) {
            case 1:
                echo '文件超过了php.ini配置中设置的大小';
                break;
            case 2:
                echo '文件超过了表单中常量设置的大小';
                break;
            case 3:
                echo '仅有部分文件被上传';
                break;
            case 4:
                echo '没有文件被上传';
                break;
            default:
                echo '系统未知错误';
                break;
        }

        echo '</strong></p>';
        //保险起见,最好把创建的临时文件删除,当然系统也会在结束会话时自动清空
        if (file_exists($w) && is_file($w)) {
            unlink($w);
        }
    }
    else {
        echo '传输类型错误';}
}

?>

运行实例 »

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


Correction status:qualified

Teacher's comments:
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