


Recently used php to read file directory information, and got the following piece of code on the Internet:
//Get the file list in the specified directory
//$path specifies the directory, which defaults to the current Directory
//$ifchild Whether to display the subdirectory file list, not displayed by default
//$curpath Displays the current path, the default is to start from the current directory; this is mainly to display the determined href path
function openpath($path=".",$ifchild=false,$curpath=".")
{
$handle = opendir($path);
if($handle)
"..")
🎜> { ifchild)//If the display subdirectory is set
Y_SEPARATOR.$file,$ifchild,$curpath.DIRECTORY_SEPARATOR.$file);
🎜> _blank">$filen";
$file " target="_blank">$filen"; 🎜> echo $file; }
Because I want to provide the function of path selection, it is best to have a drop-down menu with the path to be selected, which is much more convenient, so I changed it myself and output the path into an unordered list.
The following is a code to obtain the paths of all sub-files under the current file:
/ *Get the file path list of the specified directory
*$path specifies the directory, the default is the current directory
*$ifchild Whether to get the subdirectory file list, the default is not obtained
*$curpath displays the current path, the default is Starting from the current directory
*&$pach_html_srt passes a reference to an external variable. Because this method may be called recursively, saving some information in this way
* can also be achieved using global variables. Variable changes inside the function also affect the outside.
*&$path_ref_count The principle is the same as above, a counting flag. If it is recursive, the counter will increment from the last saved value
*/
function openpath($path=".",$ifchild=false, &$path_html_str,&$path_ref_count)
{
$handle = opendir($path);
if($handle)
{
while(false !== ($file = readdir ($handle)))
{
if ($file != "." && $file != "..")
{
$fullPath = $path.DIRECTORY_SEPARATOR.$file;
if(is_dir($fullPath))//If the file is a directory
{
$path_html_str.='
$ path_html_str.=$file.'
- ';
if($ifchild)
{
//Recursion
openpath($path.DIRECTORY_SEPARATOR.$file,$ifchild,&$path_html_str ,&$path_ref_count);
}
$path_html_str.='
}
}
}
}
closedir ($handle);
}
With the above method, I can use the jquery mcDropdown plug-in at the front desk to allow users to select the directory they want to enter through the drop-down menu, so it needs to be encapsulated into Specify the format:
$path_ref_count = 1;
$path_html_str ='';
openpath(".",true,&$path_html_str,&$path_ref_count);
$path_html_str = '
In this way, I pass $path_html_str to the front desk and display it What comes out is an unordered list that meets the requirements of mcDropdown, and the corresponding candidate list can be displayed.
The complete code is as follows:
test.html
Please select a category:
#categorymenu#
test.php
//Directory information processing
$path_ref_count = 1;
$path_html_str ='';
openpath(".",true,&$path_html_str, &$path_ref_count);
$path_html_str = ' ';
$path_html_str = str_replace ( "< ;ul>", '', $path_html_str );
//var_dump($path_info);
//var_dump($path_html_str);
$str_buffer = file_get_contents (dirname(__FILE__ ).DIRECTORY_SEPARATOR.'test.html');
$str_buffer = str_replace ( "#categorymenu#", $path_html_str, $str_buffer );
$str_buffer = str_replace ( "#delim#", DIRECTORY_SEPARATOR, $str_buffer ;
*$curpath displays the current path, starting from the current directory by default
*&$pach_html_srt passes a reference to an external variable, because this method may be called recursively, so save it in this way
* Some information can also be implemented using global variables. Changes in variables inside the function also affect the outside.
*&$path_ref_count The principle is the same as above, a counting flag. If it is recursive, the counter will increment from the last saved value
*/
function openpath($path=".",$ifchild=false, &$path_html_str,&$path_ref_count)
{
$handle = opendir($path);
if($handle)
{
while(false !== ($file = readdir ($handle)))
{
if ($file != "." && $file != "..")
{
$fullPath = $path.DIRECTORY_SEPARATOR.$file;
if(is_dir($fullPath))//If the file is a directory
{
$path_html_str.='
$ path_html_str.=$file.'
- ';
if($ifchild)
{
//Recursion
openpath($path.DIRECTORY_SEPARATOR.$file,$ifchild,&$path_html_str ,&$path_ref_count);
}
$path_html_str.='
}
}
}
}
closedir ($handle);
}
?>
jquery mcDropdown plug-in can be downloaded here: http://www.givainc.com/labs/mcdropdown_jquery_plugin.htm
http://www.bkjia.com/PHPjc/328137.html
www.bkjia.com

如何利用GitLab进行项目文档管理一、背景介绍在软件开发过程中,项目文档是非常重要的资料,不仅能够帮助开发团队了解项目的需求和设计,还能提供给测试团队和客户参考。为了方便项目文档的版本控制和团队协作,我们可以利用GitLab来进行项目文档管理。GitLab是一个基于Git的版本控制系统,除了支持代码管理,还可以管理项目文档。二、GitLab环境搭建首先,我

随着互联网的发展,SEO(SearchEngineOptimization,搜索引擎优化)已经成为了网站优化的重要一环。如果您想要使您的PHP网站在搜索引擎中获得更高的排名,就需要对SEO的内容有一定的了解了。本文将会介绍如何在PHP中实现SEO优化,内容包括网站结构优化、网页内容优化、外部链接优化,以及其他相关的优化技巧。一、网站结构优化网站结构对于S

随着电子商务和企业管理的发展,许多企业开始寻找更好的方法来处理其日常业务流程。ERP系统是一种能够整合企业各种业务流程的软件工具。它提供了全面的功能,包括生产、销售、采购、库存、财务等方面,帮助企业提高效率、控制成本和提高客户满意度。而在PHP编程语言中,也能够实现ERP系统,这就需要我们掌握一些基本的知识和技术。下面,我们将深入探讨如何在PHP中实现ERP

抖音作为一个全球知名的短视频社交平台,靠着其独特的个性化推荐算法赢得了广大用户的青睐。本文将深入研究抖音视频推荐的价值和原理,帮助读者更好地了解和充分利用这一功能。一、什么是抖音推荐视频抖音推荐视频是根据用户的兴趣和行为习惯,利用智能推荐算法为用户筛选和推送个性化视频内容。抖音平台通过分析用户的观看历史、点赞和评论行为、分享记录等数据,从庞大的视频库中精选出最符合用户口味的视频进行推荐。这种个性化推荐系统不仅提高了用户体验,也帮助用户发现更多符合其喜好的视频内容,从而增强用户黏性和留存率。在这个

随着物联网技术的发展和普及,越来越多的应用场景需要使用PHP语言进行物联网开发。PHP作为一种广泛应用于Web开发的脚本语言,它的易学易用、开发速度快、可扩展性强等特点,使其成为开发物联网应用的一种优秀选择。本文将介绍在PHP中实现物联网开发的常用技术和方法。一、传输协议和数据格式物联网设备通常使用TCP/IP或UDP协议进行数据传输,而HTTP协议是一个优

随着企业的发展,客户管理变得越来越重要。为了提高客户满意度和忠诚度,越来越多的企业采用客户关系管理系统(CRM)来帮助其管理客户关系。而PHP是一种流行的编程语言,因其简单易学、灵活和强大而被广泛应用于Web开发。那么,如何在PHP中实现CRM系统呢?本文将为您介绍实现CRM系统的步骤和技巧。Step1:需求分析在开始开发CRM系统之前,您需要进行需求分析

随着互联网的不断发展,越来越多的网站需要使用验证码来保证安全性。验证码是一种借助人类能力而无法被计算机破解的认证技术,广泛应用于网站注册、登录、找回密码等功能中。下面将介绍如何使用PHP实现验证码功能。一、生成验证码图片验证码图片的生成是验证码功能的核心,需要生成一个随机字符,并将其渲染为图像展示给用户。在PHP中,可以使用GD库来生成图片。GD库是一种用于

随着计算机硬件的不断发展,处理器中的CPU核心不再单独增加时钟频率,而是增加核心数量。这引发了一个显而易见的问题:如何发挥这些核心的性能?一种解决方法是通过并行编程,即同时执行多个任务,以充分利用CPU核心。这就是Go语言的一个独特之处,它是一门专为并发编程而设计的语言。在本文中,我们将探讨如何利用Go语言进行并发编程。协程首先,我们需要了解


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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

Dreamweaver CS6
Visual web development tools

WebStorm Mac version
Useful JavaScript development tools

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

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software
