Blogger Information
Blog 48
fans 0
comment 0
visits 40738
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
目录操作及文件上传学习—2018年08月28日22时00分
小星的博客
Original
727 people have browsed it

今天是第十三天上上课,朱老师讲解了对于文件的一系列操作。

重要知识点:1.fopen('test.txt','r') or die('打开失败');//打开文件,注意fopen一定要加上读写参数

                    2.fgets($file);//fgets读取第一行,并且指针下移;fgetss()可过滤掉所有的html标签

                    3.file_get_contents()将文件读入到一个字符串中

                    4.array_rand($arr,$length):从数组随机取出一个或多个元素,取出一个只返回键名,多个则返回随机键名数组

                    5.遍历目录:opendir()->readdir()->closedir();或是直接用sandir()返回数组遍历显示

                    6.pathinfo(__FILE__);//将目录名,文件名,扩展或解析到一个数组中

                    7.unlink()删除文件;copy()复制文件;rename(old,new);移动文件,两个参数在不同的目录下:mkdir('load');创 建目录;rmdir('load');//删除目录,删除的目录必须是空的才可以删除

                    8.文件上传代码编写一定要多练


  1. 文件上传

    代码:

    实例

    <!-- 
    /**
     * $_FILES;文件信息,是一个数组
     */
    //
    //var_dump($_FILES);//null
    //
    //echo  '<pre>';
    //var_dump($_SERVER['PHP_SELF']);//和SCRIPT_NAME一样
    // -->
    <meta charset="utf-8">
    <form action = "<?php echo htmlspecialchars($_SERVER['PHP_SELF'])?>" method="post" enctype="multipart/form-data">
    	<!-- 用隐藏域设置允许上传的文件大小,仅考参考 -->
    	<input type="hidden" name="MAX_FILE_SIZE" value="102400">
        <fieldset>
            <legend>文件上传</legend>
            <input type="file" name="upload">
        </fieldset>
        <button>上传</button>
    </form>
    
    <?php 
    	if ($_SERVER['REQUEST_METHOD'] == 'POST') {
    		
    		if (isset($_FILES['upload'])) {//是否有临时文件被上传
    			//设置允许上传的文件类型
    			$allow = ['image/jpg','image/jpeg', 'image/png'];
    			$temFile = $_FILES['upload']['tmp_name'];
    			$desFile = $_FILES['upload']['name'];
    			if (in_array($_FILES['upload']['type'], $allow)) {
    				if (move_uploaded_file($temFile, 'upload/'.$desFile)){
    					//上传成功
    					echo "<script>alert('文件上传成功')</script>";
    				} 
    			}else {
    					//提示格式不对
    					echo "<script>alert('仅允许上传jpg和png格式的图片')</script>";
    				}
    		}
    		//对上传错误进行处理
    		if ($_FILES['upload']['error'] > 0 ) {
    			echo '<p>错误原因是:<strong>';
    
    			switch ($_FILES['upload']['error']) {
    				case 1:
    					echo '文件超过了php.ini配置中设置的大小';
    					break;
    				case 2:
    					echo '文件超过了表单中常量设置的大小';
    					break;
    				case 3:
    					echo '仅有部分文件被上传';
    					break;
    				case 4:
    					echo '没有文件被上传';
    					break;
    				case 6:
    					echo '没有可用的临时文件夹';
    					break;
    				case 7:
    					echo '磁盘已满,写入失败';
    					break;
    				case 8:
    					echo '上传意外中止';
    					break;
    				
    				default:
    					echo '系统未知错误';
    					break;
    			}
    
    		}
    	} else {
    		echo '请求类型错误';
    	}
    ?>

    运行实例 »

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

    2.目录遍历

    代码:

    实例

    <?php
    header('Content-type:text/html;charset=utf-8');
    
    ///目录没有写操作,只能读
    $dir = opendir('../code/') or die('打开失败');//  .. 两个点就是返回上一级; . 一个点就是当前目录
    //var_dump($read = readdir($dir));
    while (false != ($read = readdir($dir))){//readdir还是放在循环中可以得到所有文件名
        echo $read.'<br>';
    }
    
    closedir($dir);
    
    
    
    $dir = scandir('../code/');//返回值是一个数组
    foreach($dir as $d)
    {   if ($d != "." && $d != "..") {
             echo $d . '<br>';
        }
    }

    运行实例 »

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



Correction status:Uncorrected

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