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