当前位置: 代码迷 >> PHP >> php 判断是不是为PNG格式的图片
  详细解决方案

php 判断是不是为PNG格式的图片

热度:227   发布时间:2012-12-19 14:13:14.0
php 判断是否为PNG格式的图片

function isPng($pngPath)
{
	$size = getimagesize ($pngPath); 

	$file_extension = strtolower(substr(strrchr($pngPath,'.'),1));

	if('image/png' != $size['mime'] || $file_extension != 'png')
	{ 
		return FALSE; 
	} 
	else {
		return TRUE;
		
	}
	
}
  相关解决方案