unlink() function deletes files.
If successful, return true, otherwise return false.
unlink(filename,context)
Parameters | Description |
---|---|
filename | Required. Specifies the files to be deleted. |
context | Optional. Specifies the environment for a file handle. Context is a set of options that modify the behavior of the stream. |
Note: Support for context was added in PHP 5.0.0.
<?php $file = "test.txt"; if (!unlink($file)) { echo ("Error deleting $file"); } else { echo ("Deleted $file"); } ?>
unlink() function deletes files.
If successful, return true, otherwise return false.
unlink(filename,context)
Parameters | Description |
---|---|
filename | Required. Specifies the files to be deleted. |
context | Optional. Specifies the environment for a file handle. Context is a set of options that modify the behavior of the stream. |
Note: Support for context was added in PHP 5.0.0.
<?php $file = "test.txt"; if (!unlink($file)) { echo ("Error deleting $file"); } else { echo ("Deleted $file"); } ?>
For more PHP unlink() function related articles, please pay attention to the PHP Chinese website!