How to delete itself in php

藏色散人
Release: 2023-03-08 18:16:02
Original
1936 people have browsed it

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); }
Copy after login

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!

Related labels:
php
source:php.cn
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
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!