get_file()

最后更新于:2021-11-26 09:09:19

get_file($path)

源文件

文件: gc-admin/includes/noop.php

function get_file( $path ) {

	$path = realpath( $path );

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

	return @file_get_contents( $path );
}