WP_Filesystem_ftpsockets::is_file()publicWP 2.5.0

Checks if resource is a file.

Method of the class: WP_Filesystem_ftpsockets{}

No Hooks.

Return

true|false. Whether $file is a file.

Usage

$WP_Filesystem_ftpsockets = new WP_Filesystem_ftpsockets();
$WP_Filesystem_ftpsockets->is_file( $file );
$file(string) (required)
File path.

Changelog

Since 2.5.0 Introduced.

WP_Filesystem_ftpsockets::is_file() code WP 6.5.2

public function is_file( $file ) {
	if ( $this->is_dir( $file ) ) {
		return false;
	}

	if ( $this->exists( $file ) ) {
		return true;
	}

	return false;
}