PHP delete() Function
PHP delete Definition and Usage
The delete() function deletes a file.
This function returns TRUE on success and FALSE on failure.
PHP delete Syntax
Parameter |
Description |
file |
Required. Specifies the file to delete |
Example
| <?php echo delete("target.txt"); ?> |
The output of the code above will be:
|