Web 在线文件管理器学习笔记与总结(4)查看文件内容

② 查看文件内容

a.通过 file_get_contents($filename) 得到文件内容

b.通过 highlight_string($string) 或者 highlight_file($filename) 显示内容。使用 PHP 内置的语法高亮器所定义的颜色,打印输出或者返回输出或者返回语法高亮版本的 PHP 代码

当使用 file_get_contents 读取(php)文件的内容并且显示在页面上,可以使用 <textarea></textarea> 包裹输出的内容:

$content = file_get_contents($filename);
echo "<textarea cols=‘100‘ rows=‘10‘>{$content}</textarea>";

index.php:

  1 <?php
  2 require ‘dir.func.php‘;
  3 require ‘file.func.php‘;
  4 require ‘common.func.php‘;
  5 $path = ‘file‘;
  6 $info = readDirectory($path);
  7
  8 $act = @$_REQUEST[‘act‘];
  9 $filename = @$_REQUEST[‘filename‘];
 10 //跳转变量
 11 $redirect = "index.php?path={$path}";
 12 if($act == ‘createFile‘){
 13     //创建文件
 14     $mes = createFile($path.‘/‘.$filename);
 15     alertMes($mes,$redirect);
 16 }else if($act == ‘showContent‘){
 17 //查看文件内容
 18     $content=file_get_contents($filename);
 19     //echo "<textarea readonly=‘readonly‘ cols=‘100‘ rows=‘10‘>{$content}</textarea>";
 20     //高亮显示PHP代码
 21     //高亮显示字符串中的PHP代码
 22     if(strlen($content)){
 23     $newContent=highlight_string($content,true);
 24     //高亮显示文件中的PHP代码
 25     //highlight_file($filename);
 26     $str=<<<EOF
 27     <table width=‘100%‘ bgcolor=‘pink‘ cellpadding=‘5‘ cellspacing="0" >
 28         <tr>
 29             <td>$newContent</td>
 30         </tr>
 31     </table>
 32 EOF;
 33         echo $str;
 34     }else{
 35         alertMes("文件没有内容,请编辑再查看!",$redirect);
 36     }
 37 }
 38 ?>
 39 <!DOCTYPE html>
 40 <html>
 41 <head>
 42 <meta charset="UTF-8">
 43 <title>Insert title here</title>
 44 <link rel="stylesheet" href="cikonss.css" />
 45 <link rel="stylesheet" href="common.css" />
 46 </head>
 47 <body>
 48 <h1>在线文件管理器</h1>
 49 <div id="top">
 50     <ul id="navi">
 51         <li><a href="index.php" title="主目录"><span style="margin-left: 8px; margin-top: 0px; top: 4px;" class="icon icon-small icon-square"><span class="icon-home"></span></span></a></li>
 52         <li><a href="#" onclick="show(‘createFile‘)" title="新建文件" ><span style="margin-left: 8px; margin-top: 0px; top: 4px;" class="icon icon-small icon-square"><span class="icon-file"></span></span></a></li>
 53         <li><a href="#" title="新建文件夹"><span style="margin-left: 8px; margin-top: 0px; top: 4px;" class="icon icon-small icon-square"><span class="icon-folder"></span></span></a></li>
 54         <li><a href="#" title="上传文件"><span style="margin-left: 8px; margin-top: 0px; top: 4px;" class="icon icon-small icon-square"><span class="icon-upload"></span></span></a></li>
 55         <li><a href="#" title="返回上级目录"><span style="margin-left: 8px; margin-top: 0px; top: 4px;" class="icon icon-small icon-square"><span class="icon-arrowLeft"></span></span></a></li>
 56     </ul>
 57 </div>
 58 <form action="index.php" method="post" enctype="multipart/form-data">
 59 <table width=‘100%‘ border=‘1‘ cellpadding="5" cellspacing="0" bgcolor="#abcdef" align="center">
 60     <tr id="createFolder"  style="display:none;">
 61         <td>请输入文件夹名称</td>
 62         <td >
 63             <input type="text" name="dirname" />
 64             <input type="hidden" name="path"  value="<?php echo $path;?>"/>
 65             <input type="submit"  name="act"  value="创建文件夹"/>
 66         </td>
 67     </tr>
 68     <tr id="createFile"  style="display:none;">
 69         <td>请输入文件名称</td>
 70         <td >
 71             <input type="text"  name="filename" />
 72             <input type="hidden" name="path" value="<?php echo $path;?>"/>
 73             <input type="hidden" name=‘act‘ value=‘createFile‘/>
 74             <input type="submit" value="创建文件" />
 75         </td>
 76     </tr>
 77     <tr id="uploadFile" style="display:none;">
 78         <td >请选择要上传的文件</td>
 79         <td ><input type="file" name="myFile" />
 80             <input type="submit" name="act" value="上传文件" />
 81         </td>
 82     </tr>
 83     <tr align="center">
 84         <td>编号</td>
 85         <td>名称</td>
 86         <td>类型</td>
 87         <td>大小</td>
 88         <td>可读</td>
 89         <td>可写</td>
 90         <td>可执行</td>
 91         <td>创建时间</td>
 92         <td>修改时间</td>
 93         <td>访问时间</td>
 94         <td>操作</td>
 95     </tr>
 96     <?php
 97         if($info[‘file‘]){
 98             $i = 1;
 99             foreach($info[‘file‘] as $val){
100                 $p = $path.‘/‘.$val;
101     ?>
102     <tr align="center">
103         <td><?php echo $i;?></td>
104         <td><?php echo $val;?></td>
105         <td><?php $src = filetype($p) == ‘file‘?‘file_ico.png‘:‘folder_ico.png‘;?><img src="images/<?php echo $src;?>"  title=‘文件‘></td>
106         <td><?php echo transByte(filesize($p));?></td>
107         <td><?php $src = is_readable($p)?‘correct.png‘:‘error.png‘;?><img src="images/<?php echo $src;?>" width="32"  title=‘可读‘></td>
108         <td><?php $src = is_writeable($p)?‘correct.png‘:‘error.png‘;?><img src="images/<?php echo $src;?>" width="32"  title=‘可写‘></td>
109         <td><?php $src = is_executable($p)?‘correct.png‘:‘error.png‘;?><img src="images/<?php echo $src;?>" width="32"  title=‘可写‘></td>
110         <td><?php echo date(‘Y-m-d H:i:s‘,filectime($p));?></td>
111         <td><?php echo date(‘Y-m-d H:i:s‘,filemtime($p));?></td>
112         <td><?php echo date(‘Y-m-d H:i:s‘,fileatime($p));?></td>
113         <td>
114             <a href="index.php?act=showContent&filename=<?php echo $p;?>" title=‘查看‘><img src="images/show.png" width="32" ></a>
115             <a href="" title=‘修改‘><img src="images/edit.png" width="32" ></a>
116             <a href="" title=‘重命名‘><img src="images/rename.png" width="32" ></a>
117             <a href="" title=‘复制‘><img src="images/copy.png" width="32" ></a>
118             <a href="" title=‘剪切‘><img src="images/cut.png" width="32" ></a>
119             <a href="" title=‘删除‘><img src="images/delete.png" width="32" ></a>
120             <a href="" title=‘下载‘><img src="images/download.png" width="32" ></a>
121         </td>
122     </tr>
123     <?php
124                 $i++;
125             }
126         }
127     ?>
128 </table>
129 </form>
130 <script src=‘common.js‘></script>
131 </body>
132 </html>

时间: 2024-10-12 22:26:46

Web 在线文件管理器学习笔记与总结(4)查看文件内容的相关文章

Web 在线文件管理器学习笔记与总结(19)上传文件

dir.func.php 中添加方法: /* 上传文件 */ function uploadFile($fileInfo,$path,$allowExt = array('jpg','jpeg','png','gif','txt'),$maxSize = 10487560){ //判断错误号 if($fileInfo['error'] == 0){ //文件是否是http上传上来的 if(is_uploaded_file($fileInfo['tmp_name'])){ $uniqid = md

Web 在线文件管理器学习笔记与总结(5)

① 读出要修改的文件的内容 ② 进行修改 ③ 将修改后的内容写进文件 index.php: <?php require 'dir.func.php'; require 'file.func.php'; require 'common.func.php'; $path = 'file'; $info = readDirectory($path); $act = @$_REQUEST['act']; $filename = @$_REQUEST['filename']; //跳转变量 $redire

Web 在线文件管理器学习笔记与总结(2)显示文件列表(名称,类型,大小,可读,可写,可执行,创建时间,修改时间,访问时间)

主要函数: filetype() 判断文件类型 filesize() 得到文件大小(字节) is_readable() 判断文件是否可读 is_writeable() 判断文件是否可写 is_executable() 判断文件是否可执行 filectime() 文件创建时间 filemtime() 文件修改时间 fileatime() 文件访问时间 file.func.php 封装文件操作的文件: <?php /* 转换字节大小 */ function transByte($size){ $ar

Web 在线文件管理器学习笔记与总结(13)重命名文件夹(14)复制文件夹

(13)重命名文件夹 ① 重命名文件夹通过 rename($oldname,$newname) 实现 ② 检测文件夹名是否符合规范 ③ 检测当前目录中是否存在同名文件夹名称,如果不存在则重命名成功 index.php: <?php require 'dir.func.php'; require 'file.func.php'; require 'common.func.php'; $path = 'file'; $path = @$_REQUEST['path'][email protected

Web 在线文件管理器学习笔记与总结(11)获取文件夹信息 (12)返回上一级操作

(11)获取文件夹信息 文件夹没有修改操作. index.php: <?php require 'dir.func.php'; require 'file.func.php'; require 'common.func.php'; $path = 'file'; $path = @$_REQUEST['path'][email protected]$_REQUEST['path']:$path; $info = readDirectory($path); if($info == NULL){ e

Web 在线文件管理器学习笔记与总结(1)初始文件以及获取首层目录信息

在线文件管理器即使用浏览器管理和操作项目中的目录和文件 文件相关操作包括: 1.创建文件 2.判断文件的权限 3.文件的大小 4.文件的创建时间.修改时间.访问时间 5.查看文件的内容 6.修改文件的内容 7.删除文件 8.重命名文件 9.复制文件 10.剪切文件 11.上传文件 12.下载文件 文件夹相关操作: 1.新建文件夹 2.判断文件夹的权限 3.文件夹的大小 4.文件夹的创建时间.修改时间.访问时间 5.查看文件夹的内容 6.重命名文件夹 7.复制文件夹 8.剪切文件夹 9.文件夹的下

Web 在线文件管理器学习笔记与总结(3)创建文件

① 创建文件 a. 文件名的合法性:不能包含 \/:*"<>| 等特殊字符 b. 检测当前目录下是否存在同名文件,如果存在提示请重命名后创建,如果不存在则直接创建 index.php: <?php require 'dir.func.php'; require 'file.func.php'; require 'common.func.php'; $path = 'file'; $info = readDirectory($path); $act = @$_REQUEST['a

Web 在线文件管理器学习笔记与总结(6)jQuery UI 预览图片

① 查看文件内容,如果文件是图片类型,点击直接查看图片: ② 如果不是图片类型,显示文件中的内容: ③ 使用 jQuery UI 中的 Dialog 显示图片 a.引入: <script src="jquery-1.8.3.min.js"></script> <script src="jquery-ui-1.11.3/jquery-ui.min.js"></script> <link rel="styl

Web 在线文件管理器学习笔记与总结(10)查看文件夹中的内容

① 读取文件夹大小 a. 封装计算文件夹大小的函数 b.  打开文件夹 c. 循环判断文件夹下的内容是文件还是文件夹,如果是文件,则累积相加文件的大小:如果是文件夹,则递归调用该函数 注意两个问题: a. 在计算每个文件夹大小之前,应该清空变量 $size,否则文件夹大小会累加(index.php) <td><?php $size = 0; echo transByte(dirSize($p));?></td> b. 在计算文件夹大小的方法中,$size 应该设置为全局