Guest User

Untitled

a guest
Feb 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. function shutdown($newfile,$back_file)
  2. {
  3. if(file_exists("../Content/8/$newfile")){
  4. unlink("../Content/8/$newfile");
  5. }
  6. if(file_exists("../Content/8/$back_file")){
  7. unlink("../Content/8/$back_file");
  8. }
  9. echo "Script executed with success $back_file", PHP_EOL;
  10. }
  11.  
  12. register_shutdown_function('shutdown');
Add Comment
Please, Sign In to add comment