apply_filters( 'wp_check_filetype_and_ext', array $wp_check_filetype_and_ext, string $file, string $filename, array $mimes, string|bool $real_mime )

Filters the “real” file type of the given file.


Description Description


Parameters Parameters

$wp_check_filetype_and_ext

(array) File data array containing 'ext', 'type', and 'proper_filename' keys.

$file

(string) Full path to the file.

$filename

(string) The name of the file (may differ from $file due to $file being in a tmp directory).

$mimes

(array) Key is the file extension with value as the mime type.

$real_mime

(string|bool) The actual mime type or false if the type cannot be determined.


Top ↑

Source Source

File: wp-includes/functions.php

View on Trac


Top ↑

Changelog Changelog

Changelog
Version Description
5.1.0 The $real_mime parameter was added.
3.0.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.