WP_Filesystem_ftpsockets::copy()
Copies a file.
Метод класса: WP_Filesystem_ftpsockets{}
Хуков нет.
Возвращает
true|false
. True on success, false on failure.
Использование
$WP_Filesystem_ftpsockets = new WP_Filesystem_ftpsockets(); $WP_Filesystem_ftpsockets->copy( $source, $destination, $overwrite, $mode );
- $source(строка) (обязательный)
- Path to the source file.
- $destination(строка) (обязательный)
- Path to the destination file.
- $overwrite(true|false)
- Whether to overwrite the destination file if it exists.
По умолчанию: false - $mode(int|false)
- The permissions as octal number, usually 0644 for files,
0755 for dirs.
По умолчанию: false
Список изменений
С версии 2.5.0 | Введена. |
Код WP_Filesystem_ftpsockets::copy() WP Filesystem ftpsockets::copy WP 6.6.2
public function copy( $source, $destination, $overwrite = false, $mode = false ) { if ( ! $overwrite && $this->exists( $destination ) ) { return false; } $content = $this->get_contents( $source ); if ( false === $content ) { return false; } return $this->put_contents( $destination, $content, $mode ); }