WP_Filesystem_Base::get_contents( string $file ): string|false

Reads entire file into a string.

Parameters

$filestringrequired
Name of the file to read.

Return

string|false Read data on success, false on failure.

Source

public function get_contents( $file ) {
	return false;
}

Changelog

VersionDescription
2.5.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.