WP_Filesystem_SSH2::is_readable()publicWP 2.7.0

Checks if a file is readable.

Method of the class: WP_Filesystem_SSH2{}

No Hooks.

Return

true|false. Whether $file is readable.

Usage

$WP_Filesystem_SSH2 = new WP_Filesystem_SSH2();
$WP_Filesystem_SSH2->is_readable( $file );
$file(string) (required)
Path to file.

Changelog

Since 2.7.0 Introduced.

WP_Filesystem_SSH2::is_readable() code WP 6.4.3

public function is_readable( $file ) {
	return is_readable( $this->sftp_path( $file ) );
}