wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



file_is_valid_image › WordPress Function

Seit2.5.0
Veraltetn/v
file_is_valid_image ( $path )
Parameter:
  • (string) $path File path to test if valid image.
    Erforderlich: Ja
Gibt zurück:
  • (bool) True if valid image, false if not valid image.
Definiert in:
Codex:

Validates that file is an image.



Quellcode

function file_is_valid_image( $path ) {
	$size = wp_getimagesize( $path );
	return ! empty( $size );
}