Advertisement
contatowellington

Untitled

Nov 4th, 2017
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. <?php
  2. // Script para deletar arquivos
  3. // unlink -> função do php para deletar arquivos
  4. $arquivo = "wp-config.php";
  5. if (!unlink($arquivo)){
  6. echo ("Erro ao deletar $arquivo");
  7. } else {
  8. echo ("Deletado $arquivo com sucesso!");
  9. }
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement