unlink(p1): No such file or directory
if (file_exists($file_delete)) { unlink($file_delete); } //more this link in source Here is what the above code is Doing: 1. It’s creating a file called “file_delete.txt” in the same directory as the script. 2. It’s then checking to see if the file exists. 3. If the file exists, it’s deleting it.