


How does PHP realize the functional operation of network disk and compressed package?
The code is as follows:
1. Main page file_zip.php
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>文件管理</title> <script src="bootstrap/js/jquery-1.11.2.min.js"></script> </head> <style> *{ margin:0px auto; padding:0px} #wai{ width:800px;} .list{ width:50%; height:35px; background-color:#09F; margin-top:2px; color:white; font-weight:bold; text-align:left; line-height:35px; vertical-align:middle; font-size:28px; padding:5px} .mulu{ background-color:#FC9} .mulu:hover{ cursor:pointer} #prev:hover{ cursor:pointer} </style> <body> <p id="outside"> <?php session_start(); $fname = "/wamp/www";//使$filename的值为根文件夹中www目录下的所有文件夹 if(!empty($_SESSION["lujing"])){ $fname = $_SESSION["lujing"];//把session存储的路径赋值给$fname echo "<p id='prev' class='list' lj='{sj}'>返回上一级</p>"; } ?> <p id="inside"> <?php $sj = dirname($fname); $dir = opendir($fname); $arr = array();//将文件夹与文件合并放入 $arr1 = array();//放入文件夹 $arr2 = array();//放入文件 while($filename = readdir($dir)){//把$fname里面的所有内容遍历出来 if($filename != "."){ $ml = $fname."/".$filename; if(is_dir($ml)){ $arr1[ ] = $ml; }else{ $arr2[ ] = $ml; } } } $arr = array_merge($arr1,$arr2); foreach($arr as $v){ $filename = basename($v); if(is_dir($v)){ echo "<p lj='{$ml}' class='list mulu'>{$filename}</p>"; }else{ echo "<p class='list'>{$filename}</p>"; } } closedir($dir); ?> </p> </p> </body> <script> $(".mulu").dblclick(function(){ var lj = $(this).attr("lj");//取点击内容自己的属性值lj,lj里面存储的是点击的文件夹的目录 $.ajax({ url:"file_zip_chuli.php", data:{lj:lj}, type:"POST", dataType:"TEXT", success:function(){ window.location.href = "file_zip.php"; } }); }) $("#prev").dblclick(function(){ Load(); })//双击事件的方法 function Load(){ var lj = $(this).attr("lj"); $.ajax({ url:"file_zip_chuli.php", data:{lj:lj}, type:"POST", dataType:"TEXT", success:function(){ window.location.href = "file_zip.php"; } }); } </script> </html>
2. Main page processing page file_zip_chuli.php
php session_start(); $lj = $_POST["lj"]; $_SESSION["lujing"] = $lj;
The above is the detailed content of How does PHP realize the functional operation of network disk and compressed package?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



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

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

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

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

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

Logging in CakePHP is a very easy task. You just have to use one function. You can log errors, exceptions, user activities, action taken by users, for any background process like cronjob. Logging data in CakePHP is easy. The log() function is provide

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

This chapter deals with the information about the authentication process available in CakePHP.
