Skip to content

Instantly share code, notes, and snippets.

@haruaki64
Last active November 30, 2016 14:03
Show Gist options
  • Save haruaki64/a18a8db39ab4b235c10ae0efcbea843f to your computer and use it in GitHub Desktop.
Save haruaki64/a18a8db39ab4b235c10ae0efcbea843f to your computer and use it in GitHub Desktop.
画像ファイルのMIMEから拡張子を判定する関数
public function getExtensionFromMIME ($mime) {
switch ($mime) {
case "image/gif":
$ret = ".gif";
break;
case "image/jpeg":
$ret = ".jpg";
break;
case "image/png":
$ret = ".png";
break;
default:
$ret = "";
break;
}
return $ret;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment