WP_Filesystem_Base::put_contents( string $file, string $contents, int|false $mode = false ): bool
Writes a string to a file.
Parameters
-
$file
string Required -
Remote path to the file where to write the data.
-
$contents
string Required -
The data to write.
-
$mode
int|false Optional -
The file permissions as octal number, usually 0644.
Default:
false
Return
bool True on success, false on failure.
Source
File: wp-admin/includes/class-wp-filesystem-base.php
.
View all references
public function put_contents( $file, $contents, $mode = false ) {
return false;
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
User Contributed Notes
-
Skip to note 1 content You must log in to vote on the helpfulness of this noteVote results for this note: 0You must log in to vote on the helpfulness of this note