Search code examples
phpfileself-destruction

PHP file that should run once and delete itself. Is it possible?


Is it possible to create a PHP file that runs once with no errors and deletes itself?


Solution

  • <?php unlink(__FILE__); ?>