Quick actions

cmd+k|ctrl+k

Navigation

Languages

test_exif_imagetype

Snippet info

Language

Php

Visibility

public

Author

fenghestudio

Created

2019-09-17T02:50:19Z

Updated

2019-09-17T02:50:19Z

<?php

if (exif_imagetype("image.gif") != IMAGETYPE_GIF) {
    echo "The picture is not a gif";

}
?>
INFO