Table of Contents
Related recommendations:
Home Backend Development PHP Tutorial PHP implements folder copying, deletion, viewing size, etc. based on iteration

PHP implements folder copying, deletion, viewing size, etc. based on iteration

May 18, 2018 pm 02:55 PM
php copy folder

This article mainly introduces the method of PHP to realize folder copying, deleting, checking size and other operations based on iteration. It briefly explains the principle of iteration and analyzes it in the form of examples. It uses iterative algorithm to realize folder copying, deletion and Check out the related implementation skills of common operations such as size. Friends who need it can refer to

. The details are as follows:

The concept of recursion is to call the function itself, decomposing a complex problem into many similar ones. Solving sub-problems can greatly reduce the amount of code and make the program look very elegant.

Because the system needs to allocate running space for each function call and use stack push to record it. After the function call ends, the system needs to free up space and pop the stack to restore the breakpoint. So the cost of recursion is still relatively large.

Even if the language design has optimized function calls so perfectly that the waste of resources caused by recursion can be ignored, the depth of recursion will still be limited by the system stack capacity, otherwise a StackOverflowError will be thrown.

And iteration can make good use of the characteristics of computers that are suitable for repeated operations, and theoretically, all recursive functions can be converted into iterative functions, so try not to use recursion without recursion, and use iteration Use iteration instead.

View the folder size

The idea of ​​iteration is to let the computer repeatedly execute a set of instructions. Each time this set of instructions is executed, , other new values ​​are deduced from the original value of the variable... This process is repeated until the end condition is reached or no new value is generated.

Since recursion is equivalent to a loop plus a stack, the stack can be used in iteration to convert recursion and iteration.

/**
 * 文件夹大小
 * @param $path
 * @return int
 */
function dirsize($path)
{
  /* 初始条件 */
  $size = 0;
  $stack = array();
  if (file_exists($path)) {
    $path = realpath($path) . '/';
    array_push($stack, '');
  } else {
    return -1;
  }
  /* 迭代条件 */
  while (count($stack) !== 0) {
    $dir = array_pop($stack);
    $handle = opendir($path . $dir);
    /* 执行过程 */
    while (($item = readdir($handle)) !== false) {
      if ($item == '.' || $item == '..') continue;
      $_path = $path . $dir . $item;
      if (is_file($_path)) $size += filesize($_path);
      /* 更新条件 */
      if (is_dir($_path)) array_push($stack, $dir . $item . '/');
    }
    closedir($handle);
  }
  return $size;
}
Copy after login

Copy folder

Both iteration and recursion have initialization variables and end of judgment The four steps of conditions, performing actual operations, and generating new variables are just in different locations.

For example, the step of initializing variables is located at the beginning of the function in iteration, while in recursion it refers to the process of passing parameters to other functions;

The step of judging the end condition, It is used in iteration to determine whether the loop continues, and in recursion it is used to determine the end position of the recursion;

Performing actual operations is the core part of the function in both recursion and iteration, before the step of generating new variables;

The generation of new variables is the condition for the continuation of the iteration in the iteration, and is the basis for the next recursion in the recursion. The generation of new variables allows the recursion or iteration to continue.

/**
 * 复制文件夹
 * @param $source
 * @param $dest
 * @return string
 */
function copydir($source, $dest)
{
  /* 初始条件 */
  $stack = array();
  $target = '';
  if (file_exists($source)) {
    if (!file_exists($dest)) mkdir($dest);
    $source = realpath($source) . '/';
    $dest = realpath($dest) . '/';
    $target = realpath($dest);
    array_push($stack, '');
  }
  /* 迭代条件 */
  while (count($stack) !== 0) {
    $dir = array_pop($stack);
    $handle = opendir($source . $dir);
    if (!file_exists($dest . $dir)) mkdir($dest . $dir);
    /* 执行过程 */
    while (($item = readdir($handle)) !== false) {
      if ($item == '.' || $item == '..') continue;
      $_source = $source . $dir . $item;
      $_dest = $dest . $dir . $item;
      if (is_file($_source)) copy($_source, $_dest);
      /* 更新条件 */
      if (is_dir($_source)) array_push($stack, $dir . $item . '/');
    }
    closedir($handle);
  }
  return $target;
}
Copy after login

Delete folder

Putting aside language features, the thing that affects performance the most is redundancy. Redundant code is usually caused by inadequate design.

In most cases, recursion has more redundant code than iteration, which is also a major factor causing low recursion efficiency.

But when the recursive code is concise enough and the redundancy is low enough, the performance of iteration may not be higher than that of recursion.

For example, this folder deletion function implemented using iteration is 20% slower than recursion. The main reason is the judgment of empty folder. In recursion, when the folder has no subfolders, the function will directly Delete all files and current folder, recursion ends.

Even if the folder is empty during iteration, it needs to be stored in the stack. It will be judged whether it is empty in the next iteration before it can be deleted. Compared with recursion, this has more redundant operations such as determining that the file is empty, storing it on the stack, and taking out iterations, so the processing speed will be slower than recursion.

/**
 * 删除文件夹
 * @param $path
 * @return bool
 */
function rmdirs($path)
{
  /* 初始化条件 */
  $stack = array();
  if (!file_exists($path)) return false;
  $path = realpath($path) . '/';
  array_push($stack, '');
  /* 迭代条件 */
  while (count($stack) !== 0) {
    $dir = end($stack);
    $items = scandir($path . $dir);
    /* 执行过程 */
    if (count($items) === 2) {
      rmdir($path . $dir);
      array_pop($stack);
      continue;
    }
    /* 执行过程 */
    foreach ($items as $item) {
      if ($item == '.' || $item == '..') continue;
      $_path = $path . $dir . $item;
      if (is_file($_path)) unlink($_path);
      /* 更新条件 */
      if (is_dir($_path)) array_push($stack, $dir . $item . '/');
    }
  }
  return !(file_exists($path));
}
Copy after login

View execution time

This is a view of code execution time (milliseconds ) function, execute the target code (or function) through callback, and finally calculate the execution time (milliseconds). Through this tool, you can compare the performance gap between functions. It is a very simple and practical tool.

/**
 * 函数执行毫秒数
 * @param $func
 * @return int
 */
function exec_time($func)
{
  $start = explode(' ', microtime());
  $func();// 执行耗时操作
  $end = explode(' ', microtime());
  $sec_time = floatval($end[0]) - floatval($start[0]);
  $mic_time = floatval($end[1]) - floatval($start[1]);
  return intval(($sec_time + $mic_time) * 1000);
}
echo exec_time(function () {
  /* 执行的耗时操作 */
});
Copy after login

PHP (Iteration Recursion) to achieve unlimited Detailed explanation of level classification

PHP uses function static variables to implement the specified iterationnumber of steps

PHPIterator and Iterator Detailed explanation of usage

The above is the detailed content of PHP implements folder copying, deletion, viewing size, etc. based on iteration. 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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

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)

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

7 PHP Functions I Regret I Didn't Know Before 7 PHP Functions I Regret I Didn't Know Before Nov 13, 2024 am 09:42 AM

If you are an experienced PHP developer, you might have the feeling that you’ve been there and done that already.You have developed a significant number of applications, debugged millions of lines of code, and tweaked a bunch of scripts to achieve op

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

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

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

See all articles