This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// deletes all files with the chosen extensions. The script will run on all folders and subfolders starting from the folder where you ran the script (don't forget to make a backup first) | |
ini_set('memory_limit', -1); | |
$currentPath = getcwd(); | |
$extensions = [ | |
//put here extensions to delete | |
]; |