WP_Filesystem_Base::is_file() WordPress Method
The WP_Filesystem_Base::is_file() method is used to check if a given file exists and is a regular file. This is a static method and is called by passing the path to the file to check as the first parameter. If the file exists and is a regular file, TRUE is returned, otherwise FALSE is returned.
WP_Filesystem_Base::is_file( string $file ) #
Checks if resource is a file.
Contents
Parameters
- $file
- (string)(Required)File path. 
Return
(bool) Whether $file is a file.
Source
File: wp-admin/includes/class-wp-filesystem-base.php
	public function is_file( $file ) {
		return false;
	}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description | 
|---|---|
| 2.5.0 | Introduced. |