WP_Filesystem_SSH2::is_readable()
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() WP Filesystem SSH2::is readable code WP 6.6.2
public function is_readable( $file ) { return is_readable( $this->sftp_path( $file ) ); }