Home Backend Development PHP Problem How to traverse files in php and delete specified characters

How to traverse files in php and delete specified characters

Mar 12, 2021 am 10:20 AM
php

The implementation method of php traversing files to delete specified characters: first create a PHP sample file; then delete the specified string in all specified files in the specified directory through the "function del($getstr){...}" method That’s it.

How to traverse files in php and delete specified characters

The operating environment of this article: windows7 system, PHP7.1 version, DELL G3 computer

php implements traversing the directory and deleting the specified file Specified content in

This article mainly introduces the implementation of PHP to traverse the directory and delete the specified content in the specified file. The tool implemented in this article can be used to delete one-sentence Trojans on the server. Friends who need it can refer to it. Next

I am sitting in a quiet dormitory now, and the winter vacation seems to have left me... What I posted today is the last study I did during the winter vacation, and the time after that has been Watching One Piece now.

I once wrote a directory traversal and file copying program in C language, which was very long and complicated. Now you can use PHP to traverse the directory, and the code is much shorter. The purpose of this program is to traverse the directory, find all files with the specified file name, and delete the specified string.

The code is as follows:

<?php
 //功能:删除指定目录(包括子目录)下所有指定文件中指定字符串
 $tmpfiledir = $_SERVER["DOCUMENT_ROOT"].&#39;tmp.txt&#39;;
 function del($getstr)
 {
  $isbak = true; //是否备份原文件,true为备份,false不备份
  global $tmpfiledir;
  $fr = fopen($tmpfiledir,"r") or die(&#39;未能打开临时文件&#39;);
  while($row = fgets($fr))
  {
   if(empty($row)) break;
   $row = trim($row);
   $opp = fopen($row,"r") or die("未能打开$row");
   $str = fread($opp,filesize($row)) or die("不能读$row");
   $str = str_replace($getstr,"",$str);
   fclose($opp);
   if($isbak){
    copy($row,$row.&#39;.bak&#39;) or die("备份文件失败");
    }
   $ref = fopen($row,"w") or die("重新打开文件失败");
   fwrite($ref,$str) or die("重新写入文件失败");
  }
 }
 
  function traverse($path) {
    global $name,$tmpfiledir;
   $current_dir = opendir($path);    //opendir()返回一个目录句柄,失败返回false
   if($current_dir == false)
    return false;
   while(($file = readdir($current_dir)) !== false) {    //readdir()返回打开目录句柄中的一个条目
    $sub_dir = $path . DIRECTORY_SEPARATOR . $file;    //构建子目录路径
    if($file == &#39;.&#39; || $file == &#39;..&#39;) {
     continue;
    } else if(is_dir($sub_dir)) {    //如果是目录,进行递归
     traverse($sub_dir);
    } else {    //如果是文件,再做比较
     $fileinfo = pathinfo($sub_dir);
     if($fileinfo[&#39;basename&#39;] == $name)
     {
       $fopen = fopen($tmpfiledir,"a");
       fwrite($fopen,$sub_dir."\r\n");
       fclose($fopen);
      }
    }
   }
   return true;
  }
 
  if(isset($_POST["name"]) && isset($_POST["dir"]) && isset($_POST["str"]))
  {
    $name = $_POST["name"];
    traverse($_POST["dir"]) or die("未能创建临时文件,请检查网站根目录是否可写");
    del($_POST["str"]);
             echo "成功";
    unlink($tmpfiledir);
   }
   else
   {
     echo "<p>输入相关信息</p>";
    }
?>
<form name="input" action="" method="post">
输入目标文件夹:<input type="text" name="dir"/>
输入目标文件名:<input type="text" name="name"/>
输入需要删除的字符串:<input type="text" name="str" />
<input type="submit" value="提交" />
</form>
Copy after login

How to traverse files in php and delete specified characters

You can see that I wrote two functions. The function traverse writes the specified file path found in a temporary file. Here, the function del deletes the specified strings in these files. In fact, I also think it is useless, just delete it directly during traversal, and there is no need to generate any temporary files at all.

Actually, I wrote the traversal in C language at the beginning. Because C language is not easy to operate files, I used PHP to write the deleted part. So I only wrote a del function at the beginning, and then I simply changed the traversal The file was also written in PHP (seems much simpler than C), so I wrote another function traverse. You can just look at the traversal part. You can also compare it with the traversal code I wrote in C before (I sent the source code) to see what the difference is.

However, this version does not support wildcards, so the file name must be specified. Its function (also the reason why I wrote this) is that it can delete the one-sentence Trojans we have hung on the server in batches.

[Recommended learning: "PHP Video Tutorial"]

The above is the detailed content of How to traverse files in php and delete specified characters. 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.

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

See all articles