WP_Filesystem_ftpsockets::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-ftpsockets.php

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

Changelog

Changelog
Version Description
2.5.0 Introduced.