Deletes a file or directory.
Parameters
$filestringrequired- Path to the file or directory.
$recursivebooloptional- If set to true, deletes files and folders recursively.
Default:
false $typestring|falseoptional- Type of resource.
'f'for file,'d'for directory.
Default:
false
Source
public function delete( $file, $recursive = false, $type = false ) {
return false;
}
Changelog
| Version | Description |
|---|---|
| 2.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.