WP_Filesystem_FTPext::is_readable( string $file )
Checks if a file is readable.
Parameters
- $file
-
(string) (Required) Path to file.
Return
(bool) Whether $file is readable.
Source
File: wp-admin/includes/class-wp-filesystem-ftpext.php
public function is_readable( $file ) { return true; }
Expand full source code Collapse full source code View on Trac View on GitHub
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |