wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_check_filetype_and_ext › WordPress Filter Hooks

Seit5.1.0
Veraltetn/v
apply_filters( 'wp_check_filetype_and_ext', compact( 'ext', 'type', 'proper_filename' )
Parameter: (5)
  • () wp_check_filetype_and_ext { Values for the extension, mime type, and corrected filename. @type string|false $ext File extension, or false if the file doesn't match a mime type. @type string|false $type File mime type, or false if the file doesn't match a mime type. @type string|false $proper_filename File name with its correct extension, or false if it cannot be determined. }
    Erforderlich: Ja
  • () file Full path to the file.
    Erforderlich: Ja
  • () filename The name of the file (may differ from $file due to $file being in a tmp directory).
    Erforderlich: Ja
  • () mimes Array of mime types keyed by their file extension regex, or null if none were provided.
    Erforderlich: Ja
  • () real_mime The actual mime type or false if the type cannot be determined.
    Erforderlich: Ja
Definiert in:
Codex:

Filters the "real" file type of the given file.





Quellcode

return apply_filters( 'wp_check_filetype_and_ext', compact( 'ext', 'type', 'proper_filename' ), $file, $filename, $mimes, $real_mime );