Summery Summery
Writes a string to a file.
Syntax Syntax
Parameters Parameters
- $file
-
(Required) Remote path to the file where to write the data.
- $contents
-
(Required) The data to write.
- $mode
-
(Optional) The file permissions as octal number, usually 0644.
Default value: false
Return Return
(bool) True on success, false on failure.
Source Source
File: wp-admin/includes/class-wp-filesystem-base.php
*/ public function get_contents_array( $file ) { return false;
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |