Tools, FAQ, Tutorials:
Removing a File in PHP
How To Remove a File in PHP?
✍: FYIcenter.com
If you want to remove an existing file, you can use the unlink() function. Here is a PHP script example on how to use unlink():
<?php if (file_exists("/temp/todo.txt")) { unlink("/temp/todo.txt"); print("File removed.\n"); } else { print("File does not exist.\n"); } ?>
This script will print:
File removed.
If you run this script again, it will print:
File does not exist.
⇐ Removing an Empty Directory in PHP
2016-11-20, 1238👍, 0💬
Popular Posts:
How To Control Padding Spaces within a Table Cell? Cell padding spaces are spaces between cell inner...
How To Remove Slashes on Submitted Input Values in PHP? By default, when input values are submitted ...
How to add an API to an API product for internal testing on the Publisher Portal of an Azure API Man...
How To Remove Slashes on Submitted Input Values in PHP? By default, when input values are submitted ...
Can You Add Values to an Array without Keys in PHP? Can You Add Values to an Array with a Key? The a...