GC_Filesystem_Base::copy()
最后更新于:2021-11-27 15:57:33
GC_Filesystem_Base::copy( string$source, string$destination, bool$overwrite=false, int|false$mode=false)Copies a file.
参数
- $source
-
(string) (Required) Path to the source file.
- $destination
-
(string) (Required) Path to the destination file.
- $overwrite
-
(bool) (Optional) Whether to overwrite the destination file if it exists.
Default value: false
- $mode
-
(int|false) (Optional) The permissions as octal number, usually 0644 for files, 0755 for dirs.
Default value: false
响应
(bool) True on success, false on failure.
源文件
文件: gc-admin/includes/class-gc-filesystem-base.php
public function copy( $source, $destination, $overwrite = false, $mode = false ) {
return false;
}