WP_Filesystem_FTPext::put_contents
Writes a string to a file.
Метод класса: WP_Filesystem_FTPext{}
Хуков нет.
Возвращает
true|false. True on success, false on failure.
Использование
$WP_Filesystem_FTPext = new WP_Filesystem_FTPext(); $WP_Filesystem_FTPext->put_contents( $file, $contents, $mode );
- $file(строка) (обязательный)
- Remote path to the file where to write the data.
- $contents(строка) (обязательный)
- The data to write.
- $mode(int|false)
- The file permissions as octal number, usually 0644.
По умолчанию: false
Список изменений
| С версии 2.5.0 | Введена. |
Код WP_Filesystem_FTPext::put_contents() WP Filesystem FTPext::put contents WP 6.9
public function put_contents( $file, $contents, $mode = false ) {
$tempfile = wp_tempnam( $file );
$temphandle = fopen( $tempfile, 'wb+' );
if ( ! $temphandle ) {
unlink( $tempfile );
return false;
}
mbstring_binary_safe_encoding();
$data_length = strlen( $contents );
$bytes_written = fwrite( $temphandle, $contents );
reset_mbstring_encoding();
if ( $data_length !== $bytes_written ) {
fclose( $temphandle );
unlink( $tempfile );
return false;
}
fseek( $temphandle, 0 ); // Skip back to the start of the file being written to.
$ret = ftp_fput( $this->link, $file, $temphandle, FTP_BINARY );
fclose( $temphandle );
unlink( $tempfile );
$this->chmod( $file, $mode );
return $ret;
}