Skip to content

Instantly share code, notes, and snippets.

@Guley
Last active April 23, 2018 06:39
Show Gist options
  • Save Guley/04f61f99ba926d93606a678cecbc7ce7 to your computer and use it in GitHub Desktop.
Save Guley/04f61f99ba926d93606a678cecbc7ce7 to your computer and use it in GitHub Desktop.
Check if image is corrupted using php
$tempFile = $_SERVER["DOCUMENT_ROOT"]. 'images/image.jpeg';
$im = @imagecreatefromjpeg($tempFile);
if(empty($im)){
return false;
}else{
return true;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment