Summery Summery
Reads entire file into a string.
Syntax Syntax
Parameters Parameters
- $file
-
(Required) Name of the file to read.
Return Return
(string|false) Read data on success, false on failure.
Source Source
File: wp-admin/includes/class-wp-filesystem-direct.php
public function get_contents( $file ) { return @file_get_contents( $file ); }
Advertisement
Changelog Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |