Summery Summery
Copies a file.
Syntax Syntax
Parameters Parameters
- $source
-
(Required) Path to the source file.
- $destination
-
(Required) Path to the destination file.
- $overwrite
-
(Optional) Whether to overwrite the destination file if it exists.
Default value: false
- $mode
-
(Optional) The permissions as octal number, usually 0644 for files, 0755 for dirs.
Default value: false
Return Return
(bool) True on success, false on failure.
Source Source
File: wp-admin/includes/class-wp-filesystem-ftpext.php
* Copies a file. * * @since 2.5.0 * * @param string $source Path to the source file. * @param string $destination Path to the destination file. * @param bool $overwrite Optional. Whether to overwrite the destination file if it exists. * Default false. * @param int|false $mode Optional. The permissions as octal number, usually 0644 for files, * 0755 for dirs. Default false.
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |