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, ∼2046🔥, 0💬
Popular Posts:
How to validate the id_token signature received from Azure AD v2.0 authentication response? You can ...
How to run CMD Commands in Dockerfile to change Windows Docker images? When building a new Windows i...
How to decode the id_token value received from Google OpenID Connect authentication response? Accord...
Why am I getting this "Docker failed to initialize" error? After installing the latest version of Do...
How to run PowerShell Commands in Dockerfile to change Windows Docker images? When building a new Wi...