file_is_valid_image

Definition:
function file_is_valid_image($path) {}

Validate that file is an image.

Parameters

  • string $path: File path to test if valid image.

Return values

returns:True if valid image, false if not valid image.

Source code

function file_is_valid_image($path) {

	$size = @getimagesize($path);

	return !empty($size);

}

1066

No comments yet... Be the first to leave a reply!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: