Writes a string to a file.
Parameters
$file
stringrequired- Remote path to the file where to write the data.
$contents
stringrequired- The data to write.
$mode
int|falseoptional- The file permissions as octal number, usually 0644.
Default:
false
Source
public function put_contents( $file, $contents, $mode = false ) {
$ret = file_put_contents( $this->sftp_path( $file ), $contents );
if ( strlen( $contents ) !== $ret ) {
return false;
}
$this->chmod( $file, $mode );
return true;
}
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.