Home Backend Development PHP Tutorial Easy-to-understand file management with PHP

Easy-to-understand file management with PHP

Mar 26, 2017 am 10:08 AM

  我们利用的是background-color: #339966">嵌入PHP代码和ajax结合的方式,首相想到的是利用遍历文件的方式找出分件下的目录和文件,并且找到它们的路径,使用

dirname取上级目录,
Copy after login
其中最重要的是$fname = "../../1220";定义目录。
注意session的利用
Copy after login

,并且用不同的背景色加以区分,

注意:在输出路径的时候要注意下是绝对路径还是相对路径


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<script src="../jquery/jquery-1.11.2.min.js"></script>
<style type="text/css">
*{ margin:0px auto; padding:0px}
#wai{ width:500px;}
.item{ width:100%; height:30px; border:1px solid #60F; line-height:30px; vertical-align:middle}
.dir{ background-color:#F0F; color:white;}
#prev{width:100%; height:30px; border:1px solid #60F; line-height:30px; vertical-align:middle; background-color:#60F; color:white;}
</style>
</head>

<body>
<p id="wai">
<?php
session_start();

//定义目录
$fname = "../../1220";
if(!empty($_SESSION["fname"]))
{
	$fname = $_SESSION["fname"];
}

$pname = dirname($fname); //取上级目录

if(realpath($fname)=="D:\\wamp\\www\\1220")
{
}
else
{
	echo "<p id=&#39;prev&#39; url=&#39;{$pname}&#39;>返回上一层</p>";
}
//遍历目录下的所有文件显示
$arr = glob($fname."/*");

foreach($arr as $v)
{
	$name = basename($v); //从完整路径中取文件名
	if(is_dir($v))
	{
		echo "<p class=&#39;item dir&#39; url=&#39;{$v}&#39;>{$name}</p>";
	}
	else
	{
		echo "<p class=&#39;item&#39; url=&#39;{$v}&#39;>{$name}<input type=&#39;button&#39; value=&#39;删除&#39; url=&#39;{$v}&#39; class=&#39;del&#39; /></p>";
	}
}

?>
</p>
<script type="text/javascript">
$(".dir").dblclick(function(){
		var url = $(this).attr("url");
		$.ajax({
				url:"chuli.php",
				data:{url:url},
				type:"POST",
				dataType:"TEXT",
				success: function(data){
						window.location.href="guanli.php";
					}
			});
	})
$("#prev").dblclick(function(){
	var url = $(this).attr("url");
	$.ajax({
			url:"chuli.php",
			data:{url:url},
			type:"POST",
			dataType:"TEXT",
			success: function(data){
					window.location.href="guanli.php";
				}
		});
	})
$(".del").click(function(){
		var v = confirm("确认要删除么?");
		if(v)
		{
			var url = $(this).attr("url");
			$.ajax({
				url:"del.php",
				data:{url:url},
				type:"POST",
				dataType:"TEXT",
				success: function(data){
						window.location.href="guanli.php";
					}
			});
		}
	})
</script>
</body>
</html>
Copy after login
<?php
session_start();
$url = $_POST["url"];
$_SESSION["fname"] = $url;
Copy after login

删除操作

<?php
$url = $_POST["url"];
unlink($url);
Copy after login

本文赠送删除操作,在进行删除操作时,一定要注意 . 和 ..

来看一下效果,此效果图并未加入删除键,

The above is the detailed content of Easy-to-understand file management with PHP. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

See all articles