WP_Filesystem_Direct::get_contents( string $file )

Reads entire file into a string


Description Description


Parameters Parameters

$file

(string) (Required) Name of the file to read.


Top ↑

Return Return

(string|bool) The function returns the read data or false on failure.


Top ↑

Source Source

File: wp-admin/includes/class-wp-filesystem-direct.php

	public function get_contents( $file ) {
		return @file_get_contents( $file );
	}

Top ↑

User Contributed Notes User Contributed Notes

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