Home  >  Article  >  Backend Development  >  How to delete itself in php

How to delete itself in php

藏色散人
藏色散人Original
2021-03-16 09:16:581962browse

The implementation method of php deleting itself: first create a PHP sample file; then introduce its own file; finally delete its own file through the "@unlink ($file);" method.

How to delete itself in php

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

Many friends need to make this file only when using php can be accessed once, (such as cms program installation, database query or modification), then how to let php delete itself? We can use the following code to complete:

$file = "zzz.php";  
if (file_exists($file)) {  
     @unlink ($file);  
}

Specify $file as zzz.php, Then when the program runs here, the file zzz.php will be deleted. Of course, you can also specify $file as the php code itself.

Recommended learning: "PHP Video Tutorial"

The above is the detailed content of How to delete itself in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
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