返回介绍

wp_get_image_mime()

发布于 2017-09-11 12:05:58 字数 1725 浏览 1071 评论 0 收藏 0

wp_get_image_mime( string $file )

Returns the real mime type of an image file.


description

This depends on exif_imagetype() or getimagesize() to determine real mime types.


参数

$file

(string) (Required) Full path to the file.


返回值

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


源代码

File: wp-includes/functions.php

function wp_get_image_mime( $file ) {
	/*
	 * Use exif_imagetype() to check the mimetype if available or fall back to
	 * getimagesize() if exif isn't avaialbe. If either function throws an Exception
	 * we assume the file could not be validated.
	 */
	try {
		if ( is_callable( 'exif_imagetype' ) ) {
			$imagetype = exif_imagetype( $file );
			$mime = ( $imagetype ) ? image_type_to_mime_type( $imagetype ) : false;
		} elseif ( function_exists( 'getimagesize' ) ) {
			$imagesize = getimagesize( $file );
			$mime = ( isset( $imagesize['mime'] ) ) ? $imagesize['mime'] : false;
		} else {
			$mime = false;
		}
	} catch ( Exception $e ) {
		$mime = false;
	}

	return $mime;
}

更新日志

Versiondescription
4.7.1Introduced.

相关函数

Used By

  • wp-includes/functions.php: wp_check_filetype_and_ext()

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文