WP_Filesystem_FTPext::is_readable
Checks if a file is readable.
Method of the class: WP_Filesystem_FTPext{}
No Hooks.
Returns
true|false. Whether $file is readable.
Usage
$WP_Filesystem_FTPext = new WP_Filesystem_FTPext(); $WP_Filesystem_FTPext->is_readable( $file );
- $file(string) (required)
- Path to file.
Changelog
| Since 2.5.0 | Introduced. |
WP_Filesystem_FTPext::is_readable() WP Filesystem FTPext::is readable code WP 6.9.1
public function is_readable( $file ) {
return true;
}