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