
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
PHP File That Runs Once and Deletes Itself
Yes, it can be done using the unlink function. It has been shown below −
<?php unlink(__FILE__); ?>
Another alternative that deletes the script irrespective of whether the exit function is called or not, has been shown below ^minus;
class DeleteOnExit { function __destruct() { unlink(__FILE__); } } $delete_on_exit = new DeleteOnExit();