WC_Download_Handler::get_download_content_type()
Get content type of a download.
Метод класса: WC_Download_Handler{}
Хуков нет.
Возвращает
Строку
.
Использование
$result = WC_Download_Handler::get_download_content_type( $file_path );
- $file_path(строка) (обязательный)
- File path.
Код WC_Download_Handler::get_download_content_type() WC Download Handler::get download content type WC 9.2.3
private static function get_download_content_type( $file_path ) { $file_extension = strtolower( substr( strrchr( $file_path, '.' ), 1 ) ); $ctype = 'application/force-download'; foreach ( get_allowed_mime_types() as $mime => $type ) { $mimes = explode( '|', $mime ); if ( in_array( $file_extension, $mimes, true ) ) { $ctype = $type; break; } } return $ctype; }