WP_Filesystem_Direct::is_readable( string $file )

Checks if a file is readable.


Parameters

$file

(Required) Path to file.


Return

(bool) Whether $file is readable.


Source

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

	public function is_readable($file) {
		return @is_readable($file);
	}


Changelog

Changelog
Version Description
2.5.0 Introduced.