티스토리 뷰
$fp = fopen($_FILES["thumbnail"]["tmp_name"], "r");
$image_stream = fread($fp, 64);
if ( preg_match( '/^\x89PNG\x0d\x0a\x1a\x0a/', $image_stream) ) {
$type = "png";
} elseif ( preg_match( '/^GIF8[79]a/', $image_stream) ) {
$type = "gif";
} elseif ( preg_match( '/^\xff\xd8/', $image_stream) ) {
$type = "jpg";
}
fclose($fp);
'PHP' 카테고리의 다른 글
How to Install PHP 7.2, 7.1 on CentOS/RHEL 7.4 & 6.9 (0) | 2018.04.17 |
---|
댓글