Moves a file.
Parameters
$source
stringrequired- Path to the source file.
$destination
stringrequired- Path to the destination file.
$overwrite
booloptional- Whether to overwrite the destination file if it exists.
Default:
false
Source
public function move( $source, $destination, $overwrite = 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.