Checks if a file is readable.
Parameters
$file
stringrequired- Path to file.
Source
public function is_readable( $file ) {
return @is_readable( $file );
}
Changelog
Version | Description |
---|---|
2.5.0 | Introduced. |
Checks if a file is readable.
$file
stringrequiredpublic function is_readable( $file ) {
return @is_readable( $file );
}
Version | Description |
---|---|
2.5.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.