get_file()WP 1.0

No Hooks.

Return

null. Nothing (null).

Usage

get_file( $path );
$path (required)
-

get_file() code WP 6.5.2

function get_file( $path ) {

	if ( function_exists( 'realpath' ) ) {
		$path = realpath( $path );
	}

	if ( ! $path || ! @is_file( $path ) ) {
		return false;
	}

	return @file_get_contents( $path );
}